I just recently started using angular 4 instead of angular.js 1.
I have followed the heroes tutorial to learn about the fundamentals of angular 4 and I am currently
This should work
import { Router } from "@angular/router" export class YourClass{ constructor(private router: Router) { } YourFunction() { this.router.navigate(['/path']); } }