render中的table如何添加双击某行事件
{
ellipsis: true,
type: 'expand',
width:1,
key: 'data',
render: (h, params) => {
// console.log(params.row);
return h('div', [
h('Table', {
props: {
columns:_this.recordColumns,
data: params.row.data
},
}),
])
},
}