diff --git a/components/vc-select/Select.jsx b/components/vc-select/Select.jsx index acd07aaeb..12005a5fd 100644 --- a/components/vc-select/Select.jsx +++ b/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') }, },