質問編集履歴
2
ConfigIndexComponent.vueの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -49,3 +49,29 @@
|
|
49
49
|
一応表示自体はされるのですが、エラーメッセージが出てしまいます。
|
50
50
|
|
51
51
|
解決方法のわかる方がいたら、ご回答よろしくお願いします。
|
52
|
+
|
53
|
+
### 追記
|
54
|
+
|
55
|
+
resources/js/components/ConfigIndexComponent.vue
|
56
|
+
|
57
|
+
```vue
|
58
|
+
|
59
|
+
<template>
|
60
|
+
|
61
|
+
...
|
62
|
+
|
63
|
+
</template>
|
64
|
+
|
65
|
+
<script>
|
66
|
+
|
67
|
+
export default {
|
68
|
+
|
69
|
+
name: "ConfigIndexComponent",
|
70
|
+
|
71
|
+
...
|
72
|
+
|
73
|
+
}
|
74
|
+
|
75
|
+
</script>
|
76
|
+
|
77
|
+
```
|
1
resources/js/app.js: 'config-component' => 'config-index-component'
test
CHANGED
File without changes
|
test
CHANGED
@@ -26,7 +26,7 @@
|
|
26
26
|
|
27
27
|
```js
|
28
28
|
|
29
|
-
Vue.component('config-component', require('./components/ConfigIndexComponent.vue').default);
|
29
|
+
Vue.component('config-index-component', require('./components/ConfigIndexComponent.vue').default);
|
30
30
|
|
31
31
|
```
|
32
32
|
|