ElementUI----table 修改指定列颜色

效果图:

ElementUI----table 修改指定列颜色_第1张图片

 

                    :data="tableData"

                    :cell-style="setCellColor"

                    border

                    style="width: 100%">

         .............................................

          

 

    setCellColor({row,column,rowIndex,columnIndex}){

        if(columnIndex===3){

            return 'color:#239ce6;';

        }

    },

 

你可能感兴趣的:(ElementUI,C#开发)