Created
November 28, 2020 06:43
-
-
Save thisiszoaib/902b1c019f2d62f6934a0365d3d770e6 to your computer and use it in GitHub Desktop.
Tabs 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <mat-toolbar color="primary"> | |
| Material Tabs with Lazy Loaded Routes | |
| </mat-toolbar> | |
| <nav mat-tab-nav-bar> | |
| <a mat-tab-link *ngFor="let tabItem of tabs"> | |
| <mat-icon class="mr-8">{{tabItem.icon}}</mat-icon> | |
| {{tabItem.label}} | |
| </a> | |
| </nav> | |
| <router-outlet></router-outlet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment