WebPack Angular 2上的PrimeNG计划

时间:2016-06-14 15:01:11

标签: angular fullcalendar webpack primeng

有没有人在PrimeNG计划中使用webpack angular 2应用程序?就像this橡木一样,我不能让它发挥作用,不像他我还不能。

在我的vendor.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>

它调整了我this.schedule.fullCalendar不是一个函数。在schedule.js。

PS:在我尝试插入日程表之前我插入一个按钮只是为了检查我的Prime是否正常连接,它看起来是100%

如果有人能帮助我,请尽我所能

由于

2 个答案:

答案 0 :(得分:0)

我有同样的问题。然后发现我的代码后面有import 'script!jquery';覆盖了fullcalendar插件。一旦我删除了第二个导入/要求它工作。

答案 1 :(得分:0)

我前几天看到,在primeng设置页面中,他们现在实际上详细介绍了一个入门webpack项目。我认为它很新,我还没有尝试过,但确定它会解决这些问题