vue elementui如何修改el-table头部样式

筅森魡賤 提交于 2021-01-16 07:30:09

找到el-table加入红色代码

<el-table :row-style="tableRowStyle" :header-cell-style="tableHeaderColor">
</el-table>

然后再methods加入

 

 

// 修改table tr行的背景色
        tableRowStyle ({ row, rowIndex }) {
                //   return 'background-color: pink'
        },
            // 修改table header的背景色
        tableHeaderColor ({ row, column, rowIndex, columnIndex }) {
          if (rowIndex === 0) {
            return 'background-color: #FAFAFA;color: #000;font-weight: 500;'
          }
        }

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!