diff --git a/components/vc-select/Select.tsx b/components/vc-select/Select.tsx index e94471f60..24a2b2f95 100644 --- a/components/vc-select/Select.tsx +++ b/components/vc-select/Select.tsx @@ -207,7 +207,7 @@ export default defineComponent({ // ========================= Wrap Value ========================= const convert2LabelValues = (draftValues: DraftValueType) => { // Convert to array - const valueList = toArray(draftValues); + const valueList = draftValues !== '' ? toArray(draftValues) : []; // Convert to labelInValue type return valueList.map(val => {