fix(base-picker): multiple search select will close when click on activator

This commit is contained in:
07akioni 2019-09-02 19:18:01 +08:00
parent df93a8d6a0
commit 6775499fe6

View File

@ -269,7 +269,7 @@ export default {
this.$emit('clear', e)
},
handleMouseDown (e) {
if (this.filterable && this.multiple) {
if (this.filterable && this.multiple && this.active) {
e.preventDefault()
}
},