fix(Calendar): fix reading getFullYear error (#10908)

This commit is contained in:
neverland 2022-08-13 11:43:15 +08:00 committed by GitHub
parent 7eaefd04fa
commit c3776877ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -299,7 +299,9 @@ export default defineComponent({
props.type === 'single' props.type === 'single'
? (currentDate.value as Date) ? (currentDate.value as Date)
: (currentDate.value as Date[])[0]; : (currentDate.value as Date[])[0];
scrollToDate(targetDate); if (targetDate) {
scrollToDate(targetDate);
}
} else { } else {
raf(onScroll); raf(onScroll);
} }