diff --git a/src/components/input-number/input-number.vue b/src/components/input-number/input-number.vue index 336581c..485f0d7 100644 --- a/src/components/input-number/input-number.vue +++ b/src/components/input-number/input-number.vue @@ -275,12 +275,15 @@ this.focused = true; this.$emit('on-focus', event); }, - blur () { + blur (e) { 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