Définir la route par défaut Angular
{path:'',redirectTo:'login', pathMatch: 'full' },
Colorful Caracal
{path:'',redirectTo:'login', pathMatch: 'full' },
import {Router} from '@angular/router'; // import router from angular router
export class Component{ // Example component..
constructor(private route:Router){}
go(){
this.route.navigate(['/page']); // navigate to other page
}
}
{path:'',redirectTo:'login', pathMatch: 'full' },
// Place import at the top
import { Router,NavigationStart} from '@angular/router';
//Place the code below inside your class
constructor(private router: Router){}
ngOnInit(){
this.router.events.subscribe(event =>{
if (event instanceof NavigationStart){
}
})
}