I want to have a default route in my sub-component (set with useAsDefault: true
) and to have parameters automatically passed to it. I cannot find anywhere in do
As far as I know this is not supported. You can have a route with and without the parameter and then in the GroupDefault
component just navigate to Group
$routeConfig = [
{ path: '/group', component: 'employeeListComponentDefault', name: 'GroupDefault', useAsDefault: true}
{ path: '/:group/:filter', component: 'employeeListComponent', name: 'Group'},
{ path: '/details/:employeeId/...', component: 'profileComponent', name: 'EmployeeProfile'}
]
See also