diff --git a/src/components/input-number/input-number.vue b/src/components/input-number/input-number.vue index 19005dce..bdd68dc1 100644 --- a/src/components/input-number/input-number.vue +++ b/src/components/input-number/input-number.vue @@ -250,9 +250,9 @@ this.dispatch('FormItem', 'on-form-change', val); }); }, - focus () { + focus (event) { this.focused = true; - this.$emit('on-focus'); + this.$emit('on-focus', event); }, blur () { this.focused = false;