tabs.routes.ts 1020 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import { Routes } from '@angular/router';
  2. import { TabsPage } from './tabs.page';
  3. export const routes: Routes = [
  4. {
  5. path: 'tabs',
  6. component: TabsPage,
  7. children: [
  8. {
  9. path: 'tab1',
  10. loadComponent: () =>
  11. import('../tab1/tab1.page').then((m) => m.Tab1Page),
  12. },
  13. {
  14. path: 'tab2',
  15. loadComponent: () =>
  16. import('../tab2/tab2.page').then((m) => m.Tab2Page),
  17. },
  18. {
  19. path: 'tab3',
  20. loadComponent: () =>
  21. import('../tab3/tab3.page').then((m) => m.Tab3Page),
  22. },
  23. {
  24. path: 'tab4',
  25. loadComponent: () =>
  26. import('../tab4/tab4.page').then((m) => m.tab4Page),
  27. },
  28. {
  29. path: 'tab5',
  30. loadComponent: () =>
  31. import('../tab5/tab5.page').then((m) => m.tab5Page),
  32. },
  33. {
  34. path: '',
  35. redirectTo: '/tabs/tab1',
  36. pathMatch: 'full',
  37. },
  38. ],
  39. },
  40. {
  41. path: '',
  42. redirectTo: '/tabs/tab1',
  43. pathMatch: 'full',
  44. },
  45. ];