fullcalendar'' has no exported member 'Options'.- getting error in Angular

人走茶凉 提交于 2019-11-29 04:01:13

The problem is in fullcalendar package inside ap-angular2-fullcalendar node_modules. Fullcalendar has been updated 3.8.0 but you need 3.7.0... My solution is...

Step 1: npm install fullcalendar@3.7.0 --save;

Step 2: in your package.json write/edit 'postinstall' to "rm -Rf ./node_modules/app-angular2-fullcalendar/node_modules"

Just do this - you're probably using the Angular CLI:

npm i @types/fullcalendar -s

You don't have the typings

I Found some solution now its work for me Im Updated to npm install fullcalendar@3.6.1

I had the same problem too. I solved it updating fullcalendar dependecie exactly to version 3.6.1.

npm install --save fullcalendar@3.6.1

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!