/** * title: "可点击或可删除类的动态交互标签,不支持彩色样式" * description: "" */ import React from 'react'; import { Tag, Grid, Icon } from '@alicloud/console-components'; const { Row, Col } = Grid; export default () => { const [typeState, setTypeState] = React.useState<'primary'|'normal'>('normal'); return (

默认

默认标签 { setTypeState(typeState === 'primary' ? 'normal' : 'primary'); }}>默认标签 默认标签

激活/选中

默认标签 默认标签 默认标签

禁用

默认标签 默认标签 默认标签
); };