elementui修改单元格的样式

<el-table
  :cell-style="cellStyle"
>
methods:{
    cellStyle (row, column, rowIndex, columnIndex) {
        if(row.column.label === "标题"){
            return 'font-weight:bold'
        }else{
            return ''
        }
    }
}

  

  

posted @ 2018-09-27 11:49  灵哆哆  阅读(668)  评论(0编辑  收藏  举报