mirror of
https://github.com/ElemeFE/element.git
synced 2025-12-16 11:44:01 +08:00
fix clickoutside bug
This commit is contained in:
@@ -123,10 +123,8 @@
|
||||
},
|
||||
handleChange(value) {
|
||||
this.$emit('input', value);
|
||||
this.activated = true;
|
||||
if (this.isOnComposition || (!this.triggerOnFocus && !value)) {
|
||||
this.suggestions = [];
|
||||
this.activated = false;
|
||||
return;
|
||||
}
|
||||
this.getData(value);
|
||||
|
||||
@@ -27,6 +27,8 @@ export default {
|
||||
!mouseup.target ||
|
||||
!mousedown.target ||
|
||||
el.contains(mouseup.target) ||
|
||||
el.contains(mousedown.target) ||
|
||||
el === mouseup.target ||
|
||||
(vnode.context.popperElm &&
|
||||
(vnode.context.popperElm.contains(mouseup.target) ||
|
||||
vnode.context.popperElm.contains(mousedown.target)))) return;
|
||||
|
||||
Reference in New Issue
Block a user