el-table的行点击row-click事件获取行索引
el-table的行点击row-click事件获取行索引
·
1、在 el-table 行里面设置好 row-class-name
<el-table :row-class-name="tableRowClassName" @row-click="rowClick">
</el-table>
2、给每一行row的数据对象里添加index属性
tableRowClassName({ row, rowIndex }) {
row.index = rowIndex;
},
3、监听行的点击事件
rowClick(row) {
console.log(row); // 当前点击的行数据
console.log(row.index); // 当前点击的行的索引值
},
更多推荐
已为社区贡献3条内容
所有评论(0)