build: compile 0.5.27

This commit is contained in:
rex-zsd 2019-12-13 11:59:48 +08:00
parent 91ec25ea40
commit 65e8181761
2 changed files with 18 additions and 2 deletions

10
dist/stepper/index.js vendored
View File

@ -53,7 +53,9 @@ VantComponent({
if (typeof newValue === 'number' && +this.data.value !== newValue) {
this.set({ value: newValue });
}
}
},
max: 'check',
min: 'check',
},
data: {
focus: false
@ -64,6 +66,12 @@ VantComponent({
});
},
methods: {
check() {
const newValue = this.range(this.data.value);
if (typeof newValue === 'number' && +this.data.value !== newValue) {
this.set({ value: newValue });
}
},
onFocus(event) {
this.$emit('focus', event.detail);
},

View File

@ -55,7 +55,9 @@ component_1.VantComponent({
if (typeof newValue === 'number' && +this.data.value !== newValue) {
this.set({ value: newValue });
}
}
},
max: 'check',
min: 'check',
},
data: {
focus: false
@ -66,6 +68,12 @@ component_1.VantComponent({
});
},
methods: {
check: function () {
var newValue = this.range(this.data.value);
if (typeof newValue === 'number' && +this.data.value !== newValue) {
this.set({ value: newValue });
}
},
onFocus: function (event) {
this.$emit('focus', event.detail);
},