diff --git a/src/components/select/select.vue b/src/components/select/select.vue index 228c23ad..d09dd7e4 100644 --- a/src/components/select/select.vue +++ b/src/components/select/select.vue @@ -426,7 +426,7 @@ const {multiple, value} = this; let initialValue = Array.isArray(value) ? value : [value]; if (!multiple && (typeof initialValue[0] === 'undefined' || (String(initialValue[0]).trim() === '' && !Number.isFinite(initialValue[0])))) initialValue = []; - if (this.remote && this.value) this.query = Array.isArray(value) ? "" : value; + if (this.remote && !this.multiple && this.value) this.query = value; return initialValue.filter((item) => { return Boolean(item) || item === 0; });