We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01eb4e6 commit 2834295Copy full SHA for 2834295
layouts/default.vue
@@ -3,3 +3,9 @@
3
<nuxt />
4
</div>
5
</template>
6
+
7
+<script lang="ts">
8
+export default {
9
+ name: 'LayoutDefault'
10
+}
11
+</script>
pages/index.vue
@@ -14,4 +14,7 @@
14
15
16
<script lang="ts">
17
18
+ name: 'PageIndex'
19
20
</script>
pages/options-api.vue
@@ -72,9 +72,7 @@ export default Vue.extend({
72
data () {
73
return {
74
message: "I'm defined on data()",
75
- fetchedTodos: [] as ToDo[],
76
- asyncMessage: 'I will be overwritten by asyncData',
77
- userAgent: 'I will be overwritten by asyncData'
+ fetchedTodos: [] as ToDo[]
78
}
79
},
80
0 commit comments