import { Component, OnInit } from '@angular/core'; import {Router} from '@angular/router'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent implements OnInit { title = 'app11'; constructor(private route:Router) { } ngOnInit():void { } goFirst():void { this.route.navigate(['/first']); } }