[bugfix] Stepper: can not input decimal number (#1600)

This commit is contained in:
neverland 2019-05-05 20:04:56 +08:00 committed by GitHub
parent 02ac38fa60
commit 1d2c1db9f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ VantComponent({
const newValue = this.range(value);
if (typeof newValue === 'number' && value !== newValue) {
if (typeof newValue === 'number' && +this.data.value !== newValue) {
this.set({ value: newValue });
}
}