回答編集履歴
1
2 のサンプルコードをVueインスタンス内のコードであることが分かるよう修正
test
CHANGED
@@ -64,10 +64,18 @@
|
|
64
64
|
|
65
65
|
// 2. in MyPage.vue
|
66
66
|
|
67
|
+
new Vue({
|
68
|
+
|
69
|
+
beforeCreate: () => {
|
70
|
+
|
67
|
-
this.$axios.get('/user').then( ~~~
|
71
|
+
this.$axios.get('/user').then( ~~~
|
72
|
+
|
73
|
+
},
|
74
|
+
|
75
|
+
});
|
68
76
|
|
69
77
|
```
|
70
78
|
|
71
79
|
|
72
80
|
|
73
|
-
もし参考になれば ????
|
81
|
+
Vueを普段書かないので 2 のサンプルコードが変かもしれませんが、もし参考になれば ????
|