Upgrade nuxt to 2.13.0

This commit is contained in:
2020-06-18 23:46:28 +02:00
parent 496ece54eb
commit 5843b8d62b
8 changed files with 1589 additions and 1194 deletions
-4
View File
@@ -12,14 +12,10 @@
</template>
<script>
import TagsGroup from '@/components/TagsGroup'
import renderMarkdown from '@/utils/markdown'
export default {
name: 'Note',
components: {
TagsGroup,
},
data: () => ({
note: {
tags: [],
-2
View File
@@ -29,11 +29,9 @@
<script>
import { mapState } from 'vuex'
import NoteCard from '@/components/NoteCard.vue'
export default {
name: 'Notes',
components: { NoteCard },
data: () => ({
loading: true,
}),