Answers for "app component redirect to another component in angular 8"

0

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']);  // define your component where you want to go
    }

}
Posted by: Guest on May-22-2021

Code answers related to "app component redirect to another component in angular 8"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language