mirror of https://github.com/ElemeFE/element
fix select reset bug
parent
d26e237f81
commit
01e315c9b1
|
@ -197,13 +197,12 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (!this.multiple) {
|
if (!this.multiple) {
|
||||||
if (val === '') {
|
|
||||||
this.selected = {};
|
|
||||||
this.selectedLabel = '';
|
|
||||||
}
|
|
||||||
let option = this.options.filter(option => option.value === val)[0];
|
let option = this.options.filter(option => option.value === val)[0];
|
||||||
if (option) {
|
if (option) {
|
||||||
this.$emit('addOptionToValue', option);
|
this.$emit('addOptionToValue', option);
|
||||||
|
} else {
|
||||||
|
this.selected = {};
|
||||||
|
this.selectedLabel = '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.resetHoverIndex();
|
this.resetHoverIndex();
|
||||||
|
|
Loading…
Reference in New Issue