{
title: 'Tags',
key: 'tags',
dataIndex: 'tags',
render: (_, { tags }) => (
<>
{tags.map((tag) => {
let color = tag.length > 5 ? 'geekblue' : 'green';
if (tag === 'loser') {
color = 'volcano';
}
return (
<Tag color={color} key={tag}>
{tag.toUpperCase()}
</Tag>
);
})}
</>
),
字符串
},
const App = () => <Table columns={columns} dataSource={data} />;
export default App;
型
我想为标签添加一个过滤器,并只显示已过滤标签的行。感谢任何帮助。谢谢!x1c 0d1x
1条答案
按热度按时间e0bqpujr1#
我想你可以试试这个
字符串