antdv table 表头标题换行及自定义样式
const columns = [{
title: `${i}\n周一`,
dataIndex: `date${i}`,
width: 57,
align: 'center',
customHeaderCell: () => {
return {
style: {
whiteSpace: 'pre-wrap',
fontSize: '12px'
}
}
}
}]
添加customHeaderCell
即可