mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
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:
parent
8ee4080d69
commit
c38fed70be
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user