vue 表格绑定数据源
时间: 2023-07-08 09:51:19 浏览: 168
数据源绑定
5星 · 资源好评率100%
在 Vue 中绑定表格数据源可以通过以下步骤实现:
1. 在 Vue 实例中定义表格数据源,比如:
```
data() {
return {
tableData: [
{ name: 'John', age: 25 },
{ name: 'Jane', age: 30 },
{ name: 'Bob', age: 35 }
]
}
}
```
2. 在表格组件中使用 `v-for` 指令循环渲染表格行,如下所示:
```
<template>
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr v-for="(item, index) in tableData" :key="index">
<td>{{ item.name }}</td>
<td>{{ item.age }}</td>
</tr>
</tbody>
</table>
</template>
```
3. 在表格组件中使用 `v-bind` 指令绑定表格数据源,如下所示:
```
<template>
<table :data="tableData">
<!-- 表格内容 -->
</table>
</template>
```
以上就是在 Vue 中绑定表格数据源的方法。
阅读全文