fix(Calender): failed to render months after changing maxDate or minDate (#10668)

Co-authored-by: yuyuehui.yyh <yuyuehui.yyh@digital-engine.com>
This commit is contained in:
goo-yyh 2022-06-12 12:37:46 +08:00 committed by GitHub
parent 8ee4080d69
commit c38fed70be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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