Chartjs-How to export/import modules between component files in Javascript

1๐Ÿ‘

All module will be imported to main module.

Try to use into main.module.ts:

imports: [
    IonicPageModule.forChild(MainPage),
    MomentModule,
    ThingDetailsPageModule,
    AttributePageModule
],

comment the line MainPageModule from these files

things-details.module.ts
attributes.module.ts

0๐Ÿ‘

In your main module, try adding ChartComponent to the list in exports: [AlertCardComponent,AlertCardManageComponent,ThingCardComponent,ThingDetailsPage,AttributesPage].

Leave a comment