Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <mat-toolbar>
  2. <a routerLink="" routerLinkActive="active" class="mat-button">Home</a>
  3. <a routerLink="path1" routerLinkActive="active" class="mat-button">Link 1 - Style is applied</a>
  4. <a routerLink="path2" routerLinkActive="active" class="mat-button">Link 2 - Nothing happens</a>
  5. </mat-toolbar>
  6.  
  7. <mat-toolbar>
  8. <a routerLink="" routerLinkActive="active" mat-button>Home</a>
  9. <a routerLink="path1" routerLinkActive="active" mat-button>Link 1 - Style is applied</a>
  10. <a routerLink="path2" routerLinkActive="active" mat-button>Link 2 - Nothing happens</a>
  11. </mat-toolbar>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement