参考的地址: https://www.cnblogs.com/lljun/p/11551128.html
今天在设置表格的表头的时候,我通过类的时候
发现无法设置表格的表头设置不了颜色;
经过查找;原来是这么一会事情
记录一下:现在遇见问题,可以快速的解决这样的问题~
在el-table中设置
:cell-style="rowClass"
:header-cell-style="headClass"
methods:{
// 表头样式设置
headClass () {
return 'text-align: center;background:#eef1f6;'
},
// 表格样式设置
rowClass () {
return 'text-align: center;'
}
}