Q: Pls. help to figure out how to leverage the named outlet in my case.
I've tried out several approaches, but it didn't work for me:
Navigation code:
this.router.navigate(
[
{
outlets: {
primary: ['dashboard/accounting/operations'],
'right-sidebar': ['operations'] ?? what path should be here ??
}
}
]);
In your module routing the second operations should be renamed to operations_crud.
this.router.navigate([{outlets:
{primary: ['dashboard/accounting/operations'],
'right-sidebar': ['operations_crud']
}
}]);