Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. const routes: Routes = [
  2. {
  3. path: 'tabs',
  4. component: TabsPage,
  5. children: [
  6. {
  7. path: 'tab1',
  8. children: [
  9. {
  10. path: '',
  11. loadChildren: '../tab1/tab1.module#Tab1PageModule'
  12. },
  13. {
  14. path: 'eventdetails',
  15. loadChildren: '../eventdetails/eventdetails.module#EventdetailsPageModule'
  16. },
  17. {
  18. path: 'progresspage',
  19. loadChildren: '../myprogress/myprogress.module#MyprogressPageModule'
  20. }
  21. ]
  22. },
  23. ]
  24. },
  25. {
  26. path: '',
  27. redirectTo: '/tabs/tab1',
  28. pathMatch: 'full'
  29. }
  30. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement