一、在columns的配置里面,给需要配置的列头添加customHeaderCell属性。
示例1:
<a-table :columns="columns"
……
const columns = [
{
title: 'Contact',
dataIndex: 'name',
width: 300,
align: 'left',
customHeaderCell: () => ({ style: { paddingLeft: '68px' } }),
},
……
二、设置自定义column名称
示例1:
<a-table :columns="yourName"
……
import type { TableColumn } from '@/typing';
……
const yourName: TableColumn[] = [
{
title: 'Contact',
dataIndex: 'name',
……
},
];