Есть модуль:
@NgModule({
declarations: [ModuleLayoutComponent],
imports: [
CommonModule,
RouterModule.forChild([{path: '', pathMatch: 'full', component: ModuleLayoutComponent, children: [
{path: '/order', component: OrderComponent},
{path: '/payment', component: PaymentComponent}
]}])
],
})
ModuleLayoutComponent
<header></header>
<div class="content">
<router-outlet></router-outlet>
</div>
<footer></footer>
Как сделать так, чтобы в ModuleLayoutComponent не показывался футер, когда в router-outlet показывается PaymentComponent, т.е. текущий путь - '/path'.