LoginSignup
0
0

More than 3 years have passed since last update.

https://nirajsonawane.github.io/2018/10/27/Angular-Material-Tabs-with-Router/を参考にAngularアプリにタブを追加した時にタブ名が空白

Last updated at Posted at 2019-09-03

問題

ここを参考にangularでタブごとにページを切り替えることに成功したがタブ名が空白

解決

before

スクリーンショット 2019-09-04 1.59.18.png

app.component.html
   <a mat-tab-link
    *ngFor="let link of navLinks"
    [routerLink]="link.link"
    routerLinkActive #rla="routerLinkActive"
    [active]="rla.isActive">
    </a>

after

スクリーンショット 2019-09-04 1.58.47.png

app.component.html
   <a mat-tab-link
    *ngFor="let link of navLinks"
    [routerLink]="link.link"
    routerLinkActive #rla="routerLinkActive"
    [active]="rla.isActive">
    {{link.label}}
    </a>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0