antd组件table怎样修改某一列字体的样式
怎样修改table组件某一列内容的字体样式
回答:
仔细看文档啊,
1.
2.
1.对于第一种,既然能增加class,那么自己写对应得css不就可以了?
2.既然都可以自定义渲染的内容,那么肯定更加灵活了,别说样式,增加些视频音频都没问题。
例如
const columns = [ {
title: 'ID',
dataIndex: 'gid',
key: 'gid',
},
{
title: '图片',
dataIndex: 'image_url',
key: 'image_url',
render: (text, record) => <img src={record.image_url} alt="" className="banner" width="100" height="20" />,
},
]
以上是 antd组件table怎样修改某一列字体的样式 的全部内容, 来源链接: utcz.com/p/937302.html