简体   繁体   English

fullcalendar 不显示本月的最后一天

[英]fullcalendar not displaying last day of month

fullcalendar not displaying last day of month fullcalendar 不显示本月的最后一天在此处输入图像描述

I am displaying full month view and full calendar is displaying correct header viz.我正在显示完整的月视图,完整的日历正在显示正确的 header 即。 Dec 1 - 31, 2021, but when rendering the view, its displaying dates only till 30th Dec. Its not displaying 31st December. 2021 年 12 月 1 日 - 31 日,但在渲染视图时,其显示日期仅到 12 月 30 日。它不显示 12 月 31 日。 Any help to fix the issue is appreciated任何解决问题的帮助表示赞赏

Try the daygridplugin for the fullview calender.refer this link https://fullcalendar.io/docs/daygrid-view尝试使用全视图日历的 daygridplugin。请参阅此链接https://fullcalendar.io/docs/daygrid-view

Ts file:
import { Calendar } from '@fullcalendar/core';
import dayGridPlugin from '@fullcalendar/daygrid';
let calendar = new Calendar(calendarEl, {
plugins: [ dayGridPlugin ],
initialView: 'dayGridMonth'
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM