...
Path part of the route config:
- '/' - matches '/' or ...
- ...
Router params: ...
- 'as' property: name for the route
- router-link directive
- / -> absolute
- name: corresponds to the 'as'
- generates an
<a href...
{ path: '/email/:id/...'}
The '...' are needed to denote that the component has child routes.
...
To link to a child component: ...
...
- few simple parts: RouterConfig, RouterOutlot and RouterLink
- child and auxiliary routes fully compose -- you can nest child routes inside auxiliary routes...
- ...