Ant Design Vue table行点击事件
...
methods: {
rowClick(record, index) {
let that = this;
return {
onClick: (event) => {
//Do something
},
};
}
}