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;
}
网友评论