I want to create generic url for my menu from db
If I hard code the router link for example with the value memo then the application works
<ul>
<li *ngFor="let menu of contractMenus"><a [routerLink]="['memo']">{{ menu.facetName }}</a></li>
</ul>
However if I want to make it generic like so
<ul>
<li *ngFor="let menu of contractMenus"><a [routerLink]="['{{ menu.facetUrl }}']">{{ menu.facetName }}</a></li>
</ul>
Then I get stuck on Loading.... And nothing happens I do not understand why or how I can fix this issue.