element table表格头部样式修改

方法有两种

  1. header-cell-style 此种方法是直接返回样式

  2. header-cell-class-name 只是返回一个class
    element ui 官方文档 可详细阅读上面两种方法的用法

案例

1.header-cell-style




  styleFunc({row,column,rowIndex, columnIndex}){
	 if('条件'){
   	  	return "color: #fff;background:red"
 	}
}

2.header-cell-class-name




  classNameFunc({row, column, rowIndex, columnIndex}){
	 if('条件'){
   	  	return classStyle
 	}
}


你可能感兴趣的:(web前端,vue)