Vue v-for检索当前项目的索引

时间:2018-05-22 19:28:18

标签: laravel vue.js

我循环浏览了一些项目,我遇到了一些问题。 我想收到items数组中当前项目的索引。

<tr v-for="item in items">
<td> currently viewing the {{ *index of item in items array* }}th item</td>
</tr>

1 个答案:

答案 0 :(得分:0)

(代表问题作者发布解决方案)

使用v-for="(item, ndx) in items"然后使用ndx作为当前项目的索引。