其他分享
首页 > 其他分享> > Antd Table组件的头部单元格水平居中

Antd Table组件的头部单元格水平居中

作者:互联网

const columns = [     {         dataIndex: 'districtName',         title: '区县',         width: 150,     },     {         dataIndex: 'sendContent',         title: '发送内容',         width: 620,         customHeaderCell: () => ({             style: {                 textAlign: 'center',  //头部单元格水平居中             },         }),     },     {         dataIndex: 'sendStatus',         title: '短信发送状态',         width: 200,         scopedSlots: { customRender: 'sendStatus' },         align: 'center', //头部单元格和列内容水平居中     }, ]

标签:居中,title,单元格,width,dataIndex,Antd,Table,sendStatus
来源: https://www.cnblogs.com/zhaohui9527/p/16454420.html