mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Calendar): should not check range in single mode
This commit is contained in:
parent
f1a5097a2e
commit
79d2c344f9
@ -281,9 +281,11 @@ export default createComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
onConfirm() {
|
onConfirm() {
|
||||||
if (this.checkRange()) {
|
if (this.range && !this.checkRange()) {
|
||||||
this.$emit('confirm', this.currentDate);
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.$emit('confirm', this.currentDate);
|
||||||
},
|
},
|
||||||
|
|
||||||
genMonth(date, index) {
|
genMonth(date, index) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user