diff --git a/apps/web-antd/src/components/dict-tag/dict-tag.vue b/apps/web-antd/src/components/dict-tag/dict-tag.vue index 635cb8eaf..14cc34d86 100644 --- a/apps/web-antd/src/components/dict-tag/dict-tag.vue +++ b/apps/web-antd/src/components/dict-tag/dict-tag.vue @@ -7,18 +7,9 @@ import { isValidColor, TinyColor } from '@vben/utils'; import { Tag } from 'ant-design-vue'; interface DictTagProps { - /** - * 字典类型 - */ - type: string; - /** - * 字典值 - */ - value: any; - /** - * 图标 - */ - icon?: string; + type: string; // 字典类型 + value: any; // 字典值 + icon?: string; // 图标 } const props = defineProps(); diff --git a/apps/web-ele/src/components/dict-tag/dict-tag.vue b/apps/web-ele/src/components/dict-tag/dict-tag.vue index b4be73a92..b3f1b6b3f 100644 --- a/apps/web-ele/src/components/dict-tag/dict-tag.vue +++ b/apps/web-ele/src/components/dict-tag/dict-tag.vue @@ -1,24 +1,15 @@