によって別のモジュールのロードコンポーネントをzalyでき怠惰なロード・モジュールとそのコンポーネント
です。
直接の子コンポーネントを宣言するか、子モジュールをインポートする親モジュールを作成し、この親モジュールをメインモジュールにインポートすることができます。 EXのために
:
NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
AccountModule, // <---- module for account
MainModule, // <---- module for main
DirectivesModule,
],
providers,
bootstrap: [AppComponent]
})
export class AppModule { }
@NgModule({
imports: [
FormsModule ,
DirectivesModule
],
declarations: [
LoginComponent,
SignupComponent,
SettingsComponent
]
})
export class AccountModule { }; // Account module
@NgModule({
imports: [
FormsModule ,
DirectivesModule
],
declarations: [
DashboardComponent,
PageOneComponent,
]
})
export class MaintModule { }; // Main module
まあ、私はあなたが同じコンポーネントファイル内のモジュールを作成し、その依存関係を宣言することができますね。 primengリポジトリのコンポーネントを見てください。https://github.com/primefaces/primeng/tree/master/components –