ElementUI 中 el-table 获取当前选中行的index

第一种方法:将index放到row数据中

首先,给table加一个属性::row-class-name="tableRowClassName"

然后定义tableRowClassName函数:(tableRowClassName可以自己改名)

 
  1. tableRowClassName({row, rowIndex}) {
  2. row.row_index = rowIndex;
  3. }

然后给表格添加: @row-click = "onRowClick"

 
  1. onRowClick (row, event, column) {
  2. this.currentRowIndex = row.row_index;
  3. }

这时,属性:currentRowIndex存的就是当前选中行的index了

 

el table表格中用了select怎么获取,选择行对象

element-ui

el table表格中用了select怎么获取,选择行对象,为什么我下面会undefined

事件名 说明 参数
select 当用户手动勾选数据行的 Checkbox 时触发的事件 selection, row

 
    
     
     
    
    



selectCall(row){
  console.log(row);//undefined
}

你可能感兴趣的:(前端)