除了app.commponent之外,是否可以使用要在其他组件中使用的组件?
通常,我使用ng-content和选择器将组件注入到app-component中。但是,如果我在app-component之外的其他组件上使用它,它将无法正常工作。
app.component.html
<app-mycomponent></app-mycomponent>
这仅适用于app.component。有没有办法将其用于其他组件?
我使用路由器插座来渲染其他组件。
<router-outlet></router-outlet>
以这种形式。我要注入的组件是由路由器出口呈现的。