參考的地址: 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;'
}
}