我有这个代码:
....
import { FullCalendarComponent } from '@fullcalendar/angular';
import { EventInput } from '@fullcalendar/core';
import dayGridPlugin from '@fullcalendar/daygrid';
import interactionPlugin from '@fullcalendar/interaction';
import listPlugin from '@fullcalendar/list';
import timeGrigPlugin from '@fullcalendar/timegrid';
....
fullCalendarOptions = {
allDaySlot: false,
columnHeader: false,
contentHeight: 'auto',
defaultView: 'timeGridDay',
header: {
right: '',
center: '',
left: 'title'
},
height: 'auto',
locale: this.translateService.currentLang,
plugins: [dayGridPlugin, interactionPlugin, listPlugin, timeGrigPlugin],
....
}
....
我有错误:Please import the top-level fullcalendar lib before attempting to import a plugin
。但如果我从插件列表中删除:listPlugin
一切都很好。
我下一步可以尝试什么?
检查package.json
中@fullcalendar/list
的版本。它与你安装的其他插件的版本匹配吗?
就在几个小时前,我还面临着同样的问题,我发现版本不匹配。
也有类似的问题。我更新了@fullcalendar和所有插件,它解决了我的问题