I have import :
import { RouterModule, Routes} from '@angular/router';
and then I have used below line in my function inside component
this.router.navigate(['/dashboard']);
You need to pass it inside the constructor as follows,
constructor(private router: Router){
}
Also make sure you have imported Router as follows
import { Router } from '@angular/router';
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With