回答編集履歴
1
typo
test
CHANGED
@@ -2,7 +2,19 @@
|
|
2
2
|
|
3
3
|
```vue
|
4
4
|
|
5
|
+
|
5
6
|
|
7
|
+
<tr v-for="(item,index) in items" @click="onClick(index,$event)">
|
8
|
+
|
9
|
+
<td>{{item.name}}</td>
|
10
|
+
|
11
|
+
<td><button>{{item.buttonText ? '追加する': '追加済み'}}</button></td>
|
12
|
+
|
13
|
+
</tr>
|
14
|
+
|
15
|
+
...
|
16
|
+
|
17
|
+
// buttonText: true
|
6
18
|
|
7
19
|
items: [
|
8
20
|
|