feat: 分享内容稿件

This commit is contained in:
rd
2025-08-01 17:25:21 +08:00
parent a9bb9a45c0
commit 0969c806f5
5 changed files with 288 additions and 132 deletions

View File

@ -8,7 +8,7 @@
:multiple="multiple"
size="medium"
:placeholder="placeholder"
allow-clear
:allow-clear="allClear"
:max-tag-count="maxTagCount"
@change="handleChange"
>
@ -42,6 +42,10 @@ const props = defineProps({
type: Number,
default: 3,
},
allClear: {
type: Boolean,
default: true,
}
});
const emits = defineEmits(['update:modelValue', 'change']);