アプリケーションのすべての内部ページには、ヘッダー、フッター、ツールバーの各コンポーネントがあります。ルートコンポーネントを2/4角で表示するログインフォーム
これは私のルート要素である:ここ
@Component({
selector: 'app-root',
template: `
<app-header></app-header>
<main id="content">
<app-toolbar></app-toolbar>
<router-outlet></router-outlet>
</main>
<app-footer></app-footer>`,
})
export class AppComponent { ... }
は、ルーティングテーブルである:
const routes: Routes = [
{ path: '', component: HomeComponent, canActivate: [LoginGuard]},
{ path: 'login', component: LoginComponent},
...
];
ヘッダ、フッタ、ツールバーが表示されるログインフォームを表示する場合。ログインページに表示させたくありません。可能であればログインページでAppComponent
を私のLoginComponent
に置き換えてください。
可能な複製https://stackoverflow.com/questions/41972593/removing-header-and-footer-when-displaying-logout-page? – 0mpurdy
可能な複製[ログアウトページを表示する際のヘッダーとフッターの削除](https://stackoverflow.com/questions/41972593/removing-header-and-footer-when-displaying-logout-page) – Alex