有没有人已经得到了PrimeNG的时间表来工作webpack angular 2应用程序?就像这棵橡树一样,我无法让它工作,不像他,我仍然不能。
在我的供应商.ts中,我加载了所需的库:
require('script!../node_modules/jquery/dist/jquery.js');
require('script!../node_modules/moment/moment.js');
require('script!../node_modules/fullcalendar/dist/fullcalendar.js');
在我的组件中,我从primeng导入时间表
import {Schedule} from 'primeng/components/schedule/schedule';
并添加指令
directives : [Schedule]
在我看来
<p-schedule [events]="events"></p-schedule>
它调整我这个.schedule.fullCalendar不是一个函数。 在时间表中.js。
PS:在我尝试插入时间表之前,我插入了一个按钮只是为了检查我的Prime是否正确连接,它看起来100%
如果有人能帮助我,请我尽头
谢谢
我遇到了同样的问题。然后发现我稍后在我的代码中import 'script!jquery';
覆盖了完整的日历插件。一旦我删除了第二个导入/要求它就可以工作了。
前几天我看到在primeng设置页面中,他们现在实际上详细介绍了一个入门webpack项目。我认为它很新,我还没有开始尝试它,但可以肯定的是它会解决这些问题