一分钟学会怎么修改el-table样式
<el-table :cell-style="tableRowStyle">//添加一个cell-style属性
tableRowStyle({ row, column, rowIndex, columnIndex }){
if(row.name === '张三'){
//张三的那一行所有字体颜色都是红色
return 'color:red;!important;'
}
if(columnIndex === 3){
//第3列字体颜色是红色
return 'color:red;!important;'
}
if(row.name === '张三' && columnIndex === 3){
//张三的那一行第3列字体颜色是红色
return 'color:red;!important;'
}
},
代码上了就不上效果图了,告辞!