【发布时间】:2021-05-11 18:22:55
【问题描述】:
由于某种原因,fullcalendar 不会将 fc-h-event 类添加到我的“dayGridMonth”视图中的事件中:
这是我的选择:
this.calendarOptions = {
plugins: [dayGridPlugin, interactionPlugin, timeGridPlugin, listPlugin],
locale: gbrLocale,
initialView: "dayGridMonth",
headerToolbar: {
start: "",
center: "",
end: ""
},
selectable: true,
events: this.fetchEvents,
editable: true,
showNonCurrentDates: false,
eventResizableFromStart: true,
dragScroll: true,
dayMaxEvents: 2,
navLinks: true,
dateClick: this.openAddNewEvent,
eventClick: this.openEditEvent,
eventDrop: this.eventDrop,
eventResize: this.eventResize
};
知道如何在这个视图中添加这个类,或者你能在我的选项中看到错误吗?
【问题讨论】:
标签: vue.js sass fullcalendar