修改页面

This commit is contained in:
lq
2025-09-15 19:40:07 +08:00
parent c737474852
commit f01fb13af5
7 changed files with 753 additions and 838 deletions

View File

@ -11,7 +11,7 @@
:allowClear="allClear"
:showSearch="allowSearch"
showArrow
:maxTagCount="maxTagCount"
:maxTagCount="maxTagCount !== undefined ? maxTagCount : (multiple ? 3 : undefined)"
@change="handleChange"
:filterOption="allowSearch ? filterOption : undefined"
>
@ -59,7 +59,7 @@ const props = defineProps({
},
maxTagCount: {
type: Number,
default: 3,
default: undefined,
},
allClear: {
type: Boolean,