Commit 12e4b02e authored by 杨奕's avatar 杨奕 Committed by cinwell.li

Select: optimize filterable, fixed #1933 (#1935)

parent 17ce1a32
......@@ -92,11 +92,6 @@
},
value() {
this.dispatch('ElSelect', 'setSelected');
},
visible() {
this.$nextTick(() => {
this.dispatch('ElSelectDropdown', 'updatePopper');
});
}
},
......
......@@ -229,7 +229,9 @@
},
query(val) {
this.broadcast('ElSelectDropdown', 'updatePopper');
this.$nextTick(() => {
this.broadcast('ElSelectDropdown', 'updatePopper');
});
this.hoverIndex = -1;
if (this.multiple && this.filterable) {
this.resetInputHeight();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment