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\']\"<
You can inject Router from '@angular/router' and get the current route you're on.
For example:
// mycomponent.component.ts class MyComponent { constructor(public router: Router) { } } // mycomponent.component.html