I have module that has its routing settings and contains some children modules. How can i navigate to certain routes from some children to parent or to other (sibling) modules?
As i see I could specify a name
for the route:
{ path:'/About', name: 'About', ... }
and then use it:
this.router.parent.navigate(['About']);
Since name
is deprecated, do you know how can i reach the same with the latest version of Angular2 router?