1...
2 {
3 props: true,
4 path: '/sections/:id',
5 name: 'route.sections',
6 component: Sections,
7 redirect: {
8 name: 'route.details'
9 },
10 children: [
11 {
12 alias: '',
13 path: 'details',
14 name: 'route.details',
15 component: Details
16 },
17 {
18 path: 'secondary',
19 name: 'route.secondary',
20 component: Secondary
21 }
22 ]
23 }
24...