main route: http://localhost:4200/pricing
problem statement
: if you go to pricing url, then set a value true in isShow variable.
Based on this isShow variable, you can hide/unhide the div or others things.
import { Router } from '@angular/router';
isShow = false;
constructor(private router: Router) {}
ngOnInit(): void {
if (this.router.url.includes('/pricing')) {
this.isShow = true;
} else {
this.isShow = false;
}
}
Top comments (0)