我有 2 个组件:componentA 和 componentB 当我单击 componentA 中的按钮时,这将导航到 componentB,但是 componentA 和 componentB 具有相同的过滤器和左侧边栏,唯一不同的是内容
ComponentA.html
<app-new-post></app-new-post>
<app-filter-forum></app-filter-forum>
<app-view-topic [topicData]="viewContent"
(showSubTopic)="onShowSubTopic($event)"></app-view-topic>
ComponentA.ts
onShowSubTopic() {
this.router.navigate([ComponentB])
}
ComponentB.html
<app-new-post></app-new-post>
<app-filter-forum></app-filter-forum>
<app-sub-topic></app-sub-topic>
有没有办法使用 1 个组件来显示它们?
慕标5832272
MMTTMM
相关分类