質問編集履歴

1

間違えを編集

2020/02/24 07:39

投稿

TatsuyaOkawa
TatsuyaOkawa

スコア29

test CHANGED
@@ -1 +1 @@
1
- Javascript(Vue.js 書き方
1
+ Vue.js v-modelの書き方(変数の文字列を同時に入れる方法)
test CHANGED
@@ -28,13 +28,13 @@
28
28
 
29
29
  <template
30
30
 
31
- v-for="(category, index1) in questionCategories"
31
+ v-for="category in questionCategories"
32
32
 
33
33
  >
34
34
 
35
35
  <div
36
36
 
37
- v-for="(question, index2) in category.questions"
37
+ v-for="(question, index1) in category.questions"
38
38
 
39
39
  >
40
40
 
@@ -42,7 +42,7 @@
42
42
 
43
43
  <div
44
44
 
45
- v-for="item in question.questionItems"
45
+ v-for="(item, index2) in question.questionItems"
46
46
 
47
47
  :key="item.id"
48
48