fix(Stepper): watch max and min (#2528)

This commit is contained in:
Waiter 2019-12-13 11:14:07 +08:00 committed by rex
parent 72e0556441
commit 91ec25ea40

View File

@ -62,7 +62,9 @@ VantComponent({
if (typeof newValue === 'number' && +this.data.value !== newValue) {
this.set({ value: newValue });
}
}
},
max: 'check',
min: 'check',
},
data: {
@ -76,6 +78,13 @@ VantComponent({
},
methods: {
check() {
const newValue = this.range(this.data.value);
if (typeof newValue === 'number' && +this.data.value !== newValue) {
this.set({ value: newValue });
}
},
onFocus(event: Weapp.Event) {
this.$emit('focus', event.detail);
},