Routing/Navigation
Angly is compatible with parameter routing. There are followings steps:
{ path: 'about/:keyword',component: AboutComponent }import { Router} from '@angular/router';
constructor(private router: Router){}gotoAbout(){
this.router.navigate(['/about'], { queryParams: { keyword: 'Test' } });
}Last updated