我无法在primeng中使用日程表的样式。 Image Here
答案 0 :(得分:2)
安装
npm install fullcalendar
npm install jquery
npm install moment
然后将angular-cli.json中的依赖项包含为
在样式下添加
"../node_modules/fullcalendar/dist/fullcalendar.min.css"
并在脚本下添加
../node_modules/jquery/dist/jquery.min.js
"../node_modules/fullcalendar/dist/fullcalendar.js"
这应该可以解决问题
<强>更新强>
如果您不使用angular-cli,请使用
<link href="node_modules/fullcalendar/dist/fullcalendar.min.css" rel="stylesheet">
在index.html和
中'moment': 'npm:moment',
'jquery':'npm:jquery/dist/jquery.js',
'fullcalendar':'npm:fullcalendar/dist/fullcalendar.js'
在system.config.js
中