我用角 9,primeng 9
我有我的模块: ItemModule
:
import { CalendarModule } from 'primeng/calendar';
@NgModule({
imports: [
CalendarModule
.....
],
.....
})
但我得到错误:
ERROR in node_modules/primeng/components/calendar/calendar.d.ts:246:22 - error NG6002:
Appears in the NgModule.imports of ItemModule, but could not be resolved to an NgModule class.
This likely means that the library (primeng/calendar) which declares CalendarModule has not been processed correctly by ngcc, or is not compatible with Angular Ivy.
Check if a newer version of the library is available, and update if so.
Also consider checking with the library's authors to see if the library is expected to be compatible with Ivy.
246 export declare class CalendarModule {
我在那里看到文档,这个版本的primeng应该与angular 9 ivy兼容。
你对此有什么想法吗?提前谢谢。