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
-6
View File
@@ -32,17 +32,11 @@
<script>
import { mdiArrowLeft } from '@mdi/js'
import LoginForm from '~/components/LoginForm'
import RegisterForm from '~/components/RegisterForm'
export default {
options: {
auth: 'guest',
},
components: {
LoginForm,
RegisterForm,
},
data: () => ({
mdiArrowLeft,
tab: 0,
-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,
}),