Skip to content

Commit 2ffa0d0

Browse files
fix: fix the v-for attribute value (vuejs#1561)
1 parent 80d2246 commit 2ffa0d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/examples/src/cells/App/template.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<tbody>
99
<tr v-for="i in cells[0].length">
1010
<th>{{ i - 1 }}</th>
11-
<td v-for="c, j in cols">
11+
<td v-for="(c, j) in cols">
1212
<Cell :r="i - 1" :c="j"></Cell>
1313
</td>
1414
</tr>

0 commit comments

Comments
 (0)