onMenuSelect(event:any){
if(event.actionName == 'VD'){
this.rout.navigateByUrl('/scientific-departments');
}
onMenuSelect(event:any){
if(event.actionName == 'VD'){
this.rout.navigateByUrl('/scientific-departments');
}
The route you trying to navigate is not registered. Can you provide more details? how you defined the routes? provide some code from your routing module where you added the route.
Better use navigate with relative to current route extra options instead of navigateByUrl.
this.route.navigate(['scientific-departaments'], {relativeTo: this.route})