This commit is contained in:
lcw
2026-01-13 22:17:41 +08:00
19 changed files with 1763 additions and 682 deletions

View File

@ -8,6 +8,7 @@
:key="item.value"
:index="index"
:class="item.elTagType"
:style="{'color': props.color}"
>{{ item.label }}</span>
<el-tag
v-else
@ -33,6 +34,10 @@ const props = defineProps({
type: Array,
default: null
},
color: {
type: String,
default: ''
},
tag: false,
value: [Number, String, Array]
});