angular navigate to another page different way code example
Example 1: how to navigate from one page to another in angular
const routes: Routes = [
{ path:'', component:LoginComponent},
{ path: 'home', component:HomeComponent },
{ path: '**', component:PageNotFoundComponent }
];
Example 2: how to navigate from one page to another in angular
import { Router } from '@angular/router';
export class YourComponentClassName implements OnInit {
constructor(private router: Router) {}
gotoHome(){
this.router.navigate(['/home']);
}
}