From abb82debb84861007b7059b73816fdf8ecaf995c Mon Sep 17 00:00:00 2001 From: 梁灏 Date: Wed, 26 Dec 2018 10:42:49 +0800 Subject: [PATCH] fix #5087 --- src/components/select/select.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/select/select.vue b/src/components/select/select.vue index 233a7ba..d1fe263 100644 --- a/src/components/select/select.vue +++ b/src/components/select/select.vue @@ -761,7 +761,7 @@ }, slotOptions(options, old){ // #4626,当 Options 的 label 更新时,v-model 的值未更新 - if (this.flatOptions && this.flatOptions.length && this.values.length && !this.multiple) { + if (this.flatOptions && this.flatOptions.length && this.values.length && !this.multiple && !this.remote) { this.values = this.values.map(value => { const option = this.flatOptions.find(option => { if (!option.componentOptions) return false; -- libgit2 0.21.4