I\'ve defined my routes like this:
const routes: Routes = [
{ path: \'\', loadChildren: \'./tabs/tabs.module#TabsPageModule\' },
{ path: \'faq\', lo
If you want to navigate to the list route you need to make the angular know that its a child route of tabs
this.router.navigate(['/tabs/list']); or this.router.navigate(['tabs','list']);
In router navigate you need to pass routes as an array of string so now the angular will find for the parent tabs and checks the child route if it is nothing it will navigate to pathMatch: 'full' if not it will navigate to the specific child route
In routerLink you can use the same array to match the route
Thanks, Happy coding !!