I am trying to route to a child link without changing parent param.
{
path: ':lang',
children: [
{ path: 'books', component: BooksComponent },
]
}
This is what I tried I also tried other methods but haven't worked till now.
[routerLink]="[lang, '/books']"