diff --git a/components/vc-select/Selector/MultipleSelector.tsx b/components/vc-select/Selector/MultipleSelector.tsx index bcd76d7d1..d950a9c20 100644 --- a/components/vc-select/Selector/MultipleSelector.tsx +++ b/components/vc-select/Selector/MultipleSelector.tsx @@ -203,8 +203,9 @@ const SelectSelector = defineComponent({ typeof maxTagPlaceholder === 'function' ? maxTagPlaceholder(omittedValues) : maxTagPlaceholder; - - return defaultRenderSelector(content, content, false); + const title = omittedValues.map(item => item.label).join(',') + + return defaultRenderSelector(title, content, false); } const handleInput = (e: Event) => {