Answers for "route to a new component angular"

1

angular go to route

import {Router} from '@angular/router';

constructor(private router: Router) {}

navigateToLogin() {
   this.router.navigateByUrl('/login');
}
Posted by: Guest on March-22-2021
0

angular routing example

content_copy
      
      const routes: Routes = [
  { path: 'first-component', component: FirstComponent },
  { path: 'second-component', component: SecondComponent },
];
Posted by: Guest on April-25-2021

Code answers related to "route to a new component angular"

Code answers related to "Javascript"

Browse Popular Code Answers by Language