fix: add select focus and blur events

pull/77/merge
tjz 2018-06-21 22:27:48 +08:00
parent 33da99cf21
commit 52f6f50dbe
1 changed files with 2 additions and 0 deletions

View File

@ -1469,10 +1469,12 @@ export default {
}
this._focused = true
this.updateFocusClassName()
this.$emit('focus')
},
selectionRefBlur (e) {
this._focused = false
this.updateFocusClassName()
this.$emit('blur')
},
},