jQuery fullCalendar displayed undefined on title

后端 未结 10 635
野的像风
野的像风 2021-01-04 04:19

i\'m using jQuery fullcalendar on a ReactJs component.

i have a

on the render method

and on componentD

10条回答
  •  抹茶落季
    2021-01-04 05:03

    I was having the same issue, but for me it was not about moment.js.

    I use node_modules and the loading sequence was like that :

    require('fullcalendar');
    require('fullcalendar-scheduler');
    

    But, after more investigation, I found that fullcalendar-scheduler was already loading fullcalendar module, so I just had to keep the scheduler and all is working fine :

    require('fullcalendar-scheduler');
    

提交回复
热议问题