質問編集履歴
1
スペル修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -46,7 +46,7 @@
|
|
46
46
|
@Component
|
47
47
|
export default class Child extends Vue {
|
48
48
|
@Prop({type: String, required:true})
|
49
|
-
|
49
|
+
label:string;
|
50
50
|
}
|
51
51
|
</script>
|
52
52
|
|
@@ -54,9 +54,5 @@
|
|
54
54
|
</style>
|
55
55
|
```
|
56
56
|
|
57
|
-
エラーは
|
58
|
-
```ここに言語を入力
|
59
|
-
[Vue warn]: Missing required prop: "lable"
|
60
|
-
```
|
61
57
|
|
62
58
|
となっているのですが原因がわからず・・・
|