I need to show some content on certain page, in other pages it shouldn\'t be visible. How do I achieve it ? it doesn\'t work
*ngIf=\"[routerLink]=\"[\'/home\']\"<
If your routes are well defined you can try this:
isTournamentRoute() { return this.router.url.includes("/tournament"); }
Which is piggybacking off the non accepted answer to add a bit more flexibility.