Antd-vue Table组件添加Click事件,实现点击某行数据操作
给Table组件添加Click事件,实现点击某行数据操作customRow设置行属性Function(record, index)通过customRow 属性给table添加自定义事件<a-table:columns="columns":dataSource="data":rowSelection="{selectedRowK...
·
给Table组件添加Click事件,实现点击某行数据操作
customRow | 设置行属性 | Function(record, index) |
---|
通过customRow
属性给table添加自定义事件
<a-table
:columns="columns"
:dataSource="data"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange ,onSelect: handleSelect}"
bordered
:customRow="handleClickRow"
>
</a-table>
methods: {
handleClickRow(record, index){
return {
on: {
click: () => {
console.log(record, index)
console.log('点击行内容record' + record)
console.log('序号索引index' + index)
}
}
}
}
}
控制台输出:
更多推荐
已为社区贡献13条内容
所有评论(0)