vue项目,el-table给某一列添加样式

<el-table
:cell-style="changeCellStyle">
  .........
</el-table>
changeCellStyle (row, column, rowIndex, columnIndex) {
   if(row.column.label === "列标题"){
       return 'color: blue'  // 修改的样式
   }else{
       return ''
   }
}

猜你喜欢

转载自blog.csdn.net/wangdong9395/article/details/107365336