我在弄清楚如何将导入的模块中的组件传递到我的 Angular 应用程序中并在我也在我的应用程序中导入的另一个模块中使用它时遇到了问题。
请注意,所有这两个模块都是我创建的模块。
那是我的 app.module.ts :
@NgModule({
declarations: [
AppComponent,
HomeComponent,
PnDashboardComponent,
PnFormulaireComponent
],
imports: [
BrowserModule,
AppRoutingModule,
HttpClientModule,
LayoutModule.forRoot(environment.layout),
DispoModule.forRoot(environment.dispoAides)
],
providers: [
ErrorsHandler,
InitialisationService,
InitializationGuard
],
bootstrap: [AppComponent]
})
我想要做的是传递一个组件,让我们说BreadcrumbComponent
从LayoutModule
到DispoModule
并且能够在该模块中使用它。
请注意,LayoutModule 和 DispoModule 是依赖 Angular 模块项目,它们使用 ng-packagr 打包并导入到我的应用程序中。
谢谢你。