elementui修改单元格的样式
<el-table :cell-style="cellStyle" >
methods:{
cellStyle (row, column, rowIndex, columnIndex) {
if(row.column.label === "标题"){
return 'font-weight:bold'
}else{
return ''
}
}
}
<el-table :cell-style="cellStyle" >
methods:{
cellStyle (row, column, rowIndex, columnIndex) {
if(row.column.label === "标题"){
return 'font-weight:bold'
}else{
return ''
}
}
}