html部分
<el-table :data="tableData" border style="width: 100%" :header-cell-style="getRowClass">
方法
//设置表格第一行的颜色
getRowClass({ row, column, rowIndex, columnIndex }) {
if (rowIndex == 0) {
return 'background:#EFEFEF'
} else {
return ''
}
}
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/17666.html