This is my code:
<nav>
<a [routerLink]="item.link"
*ngFor="let item of links; let lastItem = last;"
*ngIf="!lastItem">
{{item.title}}
</a>
<a (click)="clickOnCustomLink()">
MY CUSTOM LINK
</a>
<a *ngIf="links" [routerLink]="links[links.length - 1].link">
{{links[links.length - 1].title}}
</a>
</nav>
For known reasons I get an error:
Can't have multiple template bindings on one element
Any ideas?