I am creating ionic tabs project and I want to set in default login page then after open tabs . I am set in default login page but after login i am not getting tabs in ion
app-routing.module.ts
...
const routes: Routes = [
{ path: '', redirectTo: 'login', pathMatch: 'full' },
{ path: 'tabs', loadChildren: './tabs/tabs.module#TabsPageModule' },<--here
{ path: 'login', loadChildren: './login/login.module#LoginPageModule' },
];
tabs.router.module.ts
...
const routes: Routes = [
{
path: '',<--here
component: TabsPage,
children: [
{
path: 'tab1',
children: [
{ path: '', loadChildren: '../tab1/tab1.module#Tab1PageModule'}
]
},
...
{ path: 'tabs', redirectTo: '/tabs/tab1', pathMatch: 'full'}<--here
]
}
];
...
navigate with: this.router.navigate(['tabs']);