我需要在我的 Angular 9 应用程序中有一个介绍页面。我有一个mat-button,当我单击它时,我需要显示主页,其中将显示主导航和其他内容。
到目前为止我尝试过的是
在我的 app.component.html 中
<app-main-nav *ngIf="!showActions">
</app-main-nav>
<app-bgphotos ></app-bgphotos>
<router-outlet></router-outlet>
在我的app.component.ts中
public showActions: boolean;
constructor() { }
ngOnInit() { this.showActions = false; }
public toggle(): void { this.showActions = !this.showActions; }
在我的 homepage.component.html 中
<div class="bgpageland">
<div class="wlctext">
<p>Welcome</p>
<p>serv</p>
<button type="button" (click)="toggle()">Intro</button>
没有任何反应,两个组件都被显示
见下图
https://i.stack.imgur.com/mC5hS.jpg
守着一只汪
烙印99
相关分类