import snippets from './snippets'; export default { snippets, componentName: 'Tag.CheckableTag', title: '可选择标签', category: '数据展示', group: '基础组件', props: [ { name: 'children', title: { label: '内容', tip: 'children | 内容' }, propType: 'string', }, { name: 'checked', title: { label: '是否选中', tip: 'checked | 设置标签的选中状态' }, propType: 'bool', defaultValue: false, }, ], configure: { supports: { style: true, events: [ { name: 'onChange', description: '点击标签时触发的回调', template: "\tonChange(checked,${extParams}){\n\t\t// 关闭时的回调\n\t\tconsole.log('checked',checked);\n\t}\n", }, ], }, }, };