mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(Calendar): fix reading getFullYear error (#10908)
This commit is contained in:
parent
7eaefd04fa
commit
c3776877ca
@ -299,7 +299,9 @@ export default defineComponent({
|
||||
props.type === 'single'
|
||||
? (currentDate.value as Date)
|
||||
: (currentDate.value as Date[])[0];
|
||||
scrollToDate(targetDate);
|
||||
if (targetDate) {
|
||||
scrollToDate(targetDate);
|
||||
}
|
||||
} else {
|
||||
raf(onScroll);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user