elementui根据后端返回的数据决定某一列或者某个单元格的颜色

根据后端返回的数据决定某一列颜色的方法



.row-color{
background-color:red
}

addRowClass({row,rowIndex}){
if(row.type==‘测试’){
return:‘row-color’
}

根据后端返回的数据决定某一单元格颜色的方法



.cell-color{
background-color:red
}

addCellClass({row,column,rowIndex,columnIndex}){
if(row.type==‘测试’){
return:‘cell-color’
}

你可能感兴趣的:(vue.js)