element 的一些操作

关于表格

1、通过slot-scope="scope"添加操作按钮




2、通过scope.$index获取当前行下标


   
 

3、scope.row获取当前行的属性值


   

4、设置表头样式 header-cell-class-name

//表头的设置

//js中编写headerStyle,返回class名称tablestyle
headerStyle ({row, column, rowIndex, columnIndex}) {
  return 'tableStyle'
  }
//style中编写样式


//也可直接以对象的形式编写

等待更新。。。

你可能感兴趣的:(element 的一些操作)