fix: add select focus and blur events
parent
33da99cf21
commit
52f6f50dbe
|
@ -1469,10 +1469,12 @@ export default {
|
||||||
}
|
}
|
||||||
this._focused = true
|
this._focused = true
|
||||||
this.updateFocusClassName()
|
this.updateFocusClassName()
|
||||||
|
this.$emit('focus')
|
||||||
},
|
},
|
||||||
selectionRefBlur (e) {
|
selectionRefBlur (e) {
|
||||||
this._focused = false
|
this._focused = false
|
||||||
this.updateFocusClassName()
|
this.updateFocusClassName()
|
||||||
|
this.$emit('blur')
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue