Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to highlight selected mat-list-item with color in angular?

Tags:

Here I have multiple mat-list-item when i click on notification or Dashboard or comments i want to highlight it with red color how its possible in angular?

<mat-list>
   <mat-list-item style="cursor: pointer" routerLink="/base/dashboard">Dashboard</mat-list-item>
   <mat-list-item style="cursor: pointer" routerLink="/base/notification">Notification</mat-list-item>
   <mat-list-item style="cursor: pointer" routerLink="/base/comments">Comments</mat-list-item>
</mat-list>