Skip to content

Commit 5c21d1b

Browse files
committed
update for test
1 parent e13c12b commit 5c21d1b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/for.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@
2626
<ul>
2727
<li v-for="({ id, text }, index) in list" :key="id">
2828
<div>{{ index }} {{ { id, text } }}</div>
29-
<input v-model="text" />
29+
</li>
30+
</ul>
31+
32+
<ul>
33+
<li v-for="item of list" :key="item.id">
34+
<input v-model="item.text" />
3035
</li>
3136
</ul>
3237
</div>

0 commit comments

Comments
 (0)