Click on the title color

 1 <li *ngFor="let menu of menus; let i = index"> 2 <a href="#" [class.active]="i == selectedIndex" (click)="selectedIndex =i" >{{menu.title}}2</a> 3 4 </li> 

 

css:

.active{
color:red;
}
 

Click on the title color

Guess you like

Origin www.cnblogs.com/sulanlan/p/11444749.html