fix(Stepper): incorrect value after blurred when using async-change (#8936)

This commit is contained in:
neverland 2021-06-27 15:34:54 +08:00 committed by GitHub
parent 312e1dc445
commit 44bb37f637
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -232,7 +232,7 @@ export default createComponent({
onBlur(event) {
const value = this.format(event.target.value);
event.target.value = value;
this.currentValue = value;
this.emitChange(value);
this.$emit('blur', event);
resetScroll();