mirror of https://github.com/ElemeFE/element
fix clickoutside bug
parent
383e3a5f93
commit
67188f45b6
|
@ -123,10 +123,8 @@
|
||||||
},
|
},
|
||||||
handleChange(value) {
|
handleChange(value) {
|
||||||
this.$emit('input', value);
|
this.$emit('input', value);
|
||||||
this.activated = true;
|
|
||||||
if (this.isOnComposition || (!this.triggerOnFocus && !value)) {
|
if (this.isOnComposition || (!this.triggerOnFocus && !value)) {
|
||||||
this.suggestions = [];
|
this.suggestions = [];
|
||||||
this.activated = false;
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.getData(value);
|
this.getData(value);
|
||||||
|
|
|
@ -27,6 +27,8 @@ export default {
|
||||||
!mouseup.target ||
|
!mouseup.target ||
|
||||||
!mousedown.target ||
|
!mousedown.target ||
|
||||||
el.contains(mouseup.target) ||
|
el.contains(mouseup.target) ||
|
||||||
|
el.contains(mousedown.target) ||
|
||||||
|
el === mouseup.target ||
|
||||||
(vnode.context.popperElm &&
|
(vnode.context.popperElm &&
|
||||||
(vnode.context.popperElm.contains(mouseup.target) ||
|
(vnode.context.popperElm.contains(mouseup.target) ||
|
||||||
vnode.context.popperElm.contains(mousedown.target)))) return;
|
vnode.context.popperElm.contains(mousedown.target)))) return;
|
||||||
|
|
Loading…
Reference in New Issue