tr中v-for遍历数组的写法
时间: 2023-07-09 11:16:19 浏览: 172
一步一步学习PHP(8) php 数组
在tr标签中使用v-for遍历数组可以这样写:
```
<tr v-for="(item, index) in items" :key="index">
<td>{{ item.name }}</td>
<td>{{ item.age }}</td>
</tr>
```
其中,`items`是需要遍历的数组,`item`表示数组中的每个元素,`index`表示数组中每个元素的下标。`:key`用于提高渲染性能,必须加上。在`<td>`标签中可以使用`{{ }}`插值表达式来显示数组元素中的数据。
阅读全文