Loading

antdv table 表头标题换行及自定义样式

const columns = [{
	title: `${i}\n周一`,
    dataIndex: `date${i}`,
	width: 57,
	align: 'center',
	customHeaderCell: () => {
		return {
			style: {
				whiteSpace: 'pre-wrap',
				fontSize: '12px'
			}
		}
	}
}]

添加customHeaderCell即可

posted @ 2024-03-27 13:55  雾气^^  阅读(574)  评论(0编辑  收藏  举报