[Bugfix] Stepper: allow delete input to empty (#1160)

This commit is contained in:
Chuangbo Li 2018-12-26 20:05:52 +08:00 committed by neverland
parent b277a508ce
commit d21858c450

View File

@ -14,7 +14,7 @@ VantComponent({
],
props: {
value: Number,
value: null,
integer: Boolean,
disabled: Boolean,
asyncChange: Boolean,
@ -45,9 +45,11 @@ VantComponent({
watch: {
value(value) {
this.set({
value: this.range(value)
});
if (value !== '') {
this.set({
value: this.range(value)
});
}
}
},