diff --git a/src/components/input-number/input-number.vue b/src/components/input-number/input-number.vue index b09de4b..336581c 100644 --- a/src/components/input-number/input-number.vue +++ b/src/components/input-number/input-number.vue @@ -275,15 +275,12 @@ this.focused = true; this.$emit('on-focus', event); }, - blur (e) { + blur () { this.focused = false; this.$emit('on-blur'); if (!findComponentUpward(this, ['DatePicker', 'TimePicker', 'Cascader', 'Search'])) { this.dispatch('FormItem', 'on-form-blur', this.currentValue); } - if (!this.activeChange) { - this.change(e); - } }, keyDown (e) { if (e.keyCode === 38) { -- libgit2 0.21.4