fix(Calendar): failed to render months when not poppable (#10707)

This commit is contained in:
neverland 2022-06-12 12:42:37 +08:00 committed by GitHub
parent c38fed70be
commit eae8d47cee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -185,7 +185,7 @@ export default defineComponent({
const months: Date[] = [];
const cursor = new Date(props.minDate);
if (props.lazyRender && !props.show) {
if (props.lazyRender && !props.show && props.poppable) {
return months;
}