diff --git a/src/components/input-number/input-number.vue b/src/components/input-number/input-number.vue index 8472fcf9..de82103a 100644 --- a/src/components/input-number/input-number.vue +++ b/src/components/input-number/input-number.vue @@ -239,9 +239,11 @@ }, focus () { this.focused = true; + this.$emit('on-focus'); }, blur () { this.focused = false; + this.$emit('on-blur'); }, keyDown (e) { if (e.keyCode === 38) {