美文网首页Ant Design
Antd Vue:table自定义表头样式

Antd Vue:table自定义表头样式

作者: 东方晓 | 来源:发表于2022-09-22 10:54 被阅读0次

2022-09-22 周四
文档

使用表头属性API
参数 说明 类型
customHeaderRow 设置头部行属性 Function(column, index)
上代码
html

为表头添加类名

<a-table
        bordered
        size="small"
        ref="table"
        :pagination="false"
        rowKey="id"
        :columns="columns"
        :dataSource="dataSource"
        :customHeaderRow="(()=>({class: 'tb-head'}))"></a-table>
全局css文件

添加样式

.tb-head th{
  color:blue !important; 
}

相关文章

网友评论

    本文标题:Antd Vue:table自定义表头样式

    本文链接:https://www.haomeiwen.com/subject/anjwortx.html