fix: add select focus and blur events
parent
be90aa925b
commit
2a31e08d8b
|
@ -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