mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
chore: bump vue、vant-cli
This commit is contained in:
parent
c948002445
commit
35d5ccad3f
@ -38,7 +38,7 @@
|
||||
},
|
||||
"homepage": "https://github.com/youzan/vant-weapp#readme",
|
||||
"devDependencies": {
|
||||
"@vant/cli": "^3.10.3",
|
||||
"@vant/cli": "^3.11.2",
|
||||
"@vant/icons": "^1.6.0",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-insert": "^0.5.0",
|
||||
@ -48,8 +48,8 @@
|
||||
"miniprogram-api-typings": "^3.1.6",
|
||||
"miniprogram-ci": "^1.0.27",
|
||||
"tscpaths": "^0.0.9",
|
||||
"vue": "^3.0.0",
|
||||
"@vue/compiler-sfc": "^3.0.0"
|
||||
"vue": "^3.2.1",
|
||||
"@vue/compiler-sfc": "^3.2.1"
|
||||
},
|
||||
"prettier": {
|
||||
"singleQuote": true,
|
||||
|
@ -187,12 +187,10 @@ VantComponent({
|
||||
if (this.currentValue !== value) {
|
||||
if (Math.abs(this.currentValue - value) < STEP) {
|
||||
this.currentValue = value;
|
||||
} else if (this.currentValue < value) {
|
||||
this.currentValue += STEP;
|
||||
} else {
|
||||
if (this.currentValue < value) {
|
||||
this.currentValue += STEP;
|
||||
} else {
|
||||
this.currentValue -= STEP;
|
||||
}
|
||||
this.currentValue -= STEP;
|
||||
}
|
||||
this.drawCircle(this.currentValue);
|
||||
} else {
|
||||
|
@ -84,7 +84,7 @@ VantComponent({
|
||||
this.$emit('clear', event.detail);
|
||||
},
|
||||
|
||||
onClickInput: function (event) {
|
||||
onClickInput(event) {
|
||||
this.$emit('click-input', event.detail);
|
||||
},
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user