parent
5d8f3fd8ee
commit
7e1301ad7f
|
@ -44,6 +44,7 @@ export type TagProps = HTMLAttributes & Partial<ExtractPropTypes<typeof tagProps
|
|||
|
||||
const Tag = defineComponent({
|
||||
name: 'ATag',
|
||||
props: tagProps,
|
||||
emits: ['update:visible', 'close'],
|
||||
setup(props: TagProps, { slots, emit, attrs }) {
|
||||
const { getPrefixCls } = inject('configProvider', defaultConfigProvider);
|
||||
|
@ -137,8 +138,6 @@ const Tag = defineComponent({
|
|||
},
|
||||
});
|
||||
|
||||
Tag.props = tagProps;
|
||||
|
||||
Tag.CheckableTag = CheckableTag;
|
||||
|
||||
Tag.install = function(app: App) {
|
||||
|
|
Loading…
Reference in New Issue