antdesignvue rowKey
时间: 2023-10-09 13:15:25 浏览: 95
ant design的table组件实现全选功能以及自定义分页
`rowKey` 是 Ant Design Vue 表格组件中的一个属性,用于指定表格行数据的唯一标识,以便在表格中对行进行操作时进行区分。
例如,如果你的表格中的每一行数据都有一个唯一的 ID 字段,你可以将 `rowKey` 设置为 `"ID"`,这样 Ant Design Vue 表格组件就可以在进行行操作时根据 ID 区分每一行数据。
示例代码:
```html
<template>
<a-table :columns="columns" :data-source="data" rowKey="ID"></a-table>
</template>
<script>
export default {
data() {
return {
data: [
{ID: 1, name: 'Tom'},
{ID: 2, name: 'Jerry'},
{ID: 3, name: 'Lucy'},
],
columns: [
{
title: 'ID',
dataIndex: 'ID'
},
{
title: 'Name',
dataIndex: 'name'
}
]
}
}
}
</script>
```
阅读全文