I have this route:
{
path: ':parent_id',
component: Parent,
children: [
{
path: 'child',
children: [
{
path: ':child_id',
component: Child
}
]
}
]
}
How do I retrieve the parent_id value from within the Child component?