我正在使用全日历,并且顶部的按钮没有显示。每周,每日和每月查看按钮也不会显示。 我已经安装了插件,它们正确显示在节点模块中。
图片示例全日历:-
在.ts
文件中import dayGridPlugin from '@fullcalendar/daygrid';
import timeGridPlugin from '@fullcalendar/timegrid';
import interactionPlugin from '@fullcalendar/interaction';
this.options = {
plugins: [dayGridPlugin, timeGridPlugin, interactionPlugin],
defaultDate: new Date(),
header: {
left: 'prev,next',
center: 'title',
right: 'month'
},
eventClick: (e) => {
this.showDetail = true;
this.activity = e.event._def.extendedProps.schedule;
},
dateClick: (e) => {
this.modalAct.showActivity(null, e.dateStr);
console.log(e.dateStr);
}
};