angular navigation module code example
Example 1: generate module with routing in angular
ng g m [ModuleName] --routing
Example 2: angular router navigate
// Here’s a basic example using the navigate method:
goPlaces() {
this.router.navigate(['/', 'page-name']);
}
/*
I hope it will help you.
Namaste
*/