zl程序教程

您现在的位置是:首页 >  前端

当前栏目

elementui中表格表头设置背景色

elementui 设置 表格 背景色 表头
2023-09-27 14:22:17 时间

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