Browse Source

fix: add select focus and blur events

pull/165/head
tjz 7 years ago
parent
commit
2a31e08d8b
  1. 2
      components/vc-select/Select.jsx

2
components/vc-select/Select.jsx

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

Loading…
Cancel
Save