Commit abb82debb84861007b7059b73816fdf8ecaf995c

Authored by 梁灏
1 parent 9051ca49

fix #5087

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/components/select/select.vue
... ... @@ -761,7 +761,7 @@
761 761 },
762 762 slotOptions(options, old){
763 763 // #4626,当 Options 的 label 更新时,v-model 的值未更新
764   - if (this.flatOptions && this.flatOptions.length && this.values.length && !this.multiple) {
  764 + if (this.flatOptions && this.flatOptions.length && this.values.length && !this.multiple && !this.remote) {
765 765 this.values = this.values.map(value => {
766 766 const option = this.flatOptions.find(option => {
767 767 if (!option.componentOptions) return false;
... ...