I\'ve defined my routes like this:
const routes: Routes = [ { path: \'\', loadChildren: \'./tabs/tabs.module#TabsPageModule\' }, { path: \'faq\', lo
Mention outlets in the routerLink while navigating to particular outlet.
outlets
routerLink
[routerLink]="['tabs/profile', {outlets: {'profile': ['profile'], 'list': ['none']}}]"
which will eventually generates below route
http://localhost:4200/tabs/profile/(profile:profile//list:none)