app.routes.ts 743 B

12345678910111213141516171819202122232425262728
  1. import { Routes } from '@angular/router';
  2. export const routes: Routes = [
  3. {
  4. path: '',
  5. loadChildren: () => import('./tabs/tabs.routes').then((m) => m.routes),
  6. },
  7. {
  8. path: 'customization',
  9. loadComponent: () => import('./customization/customization.page').then( m => m.CustomizationPage)
  10. },
  11. {
  12. path: 'community',
  13. loadComponent: () => import('./community/community.page').then( m => m.CommunityPage)
  14. },
  15. {
  16. path: 'yiyun',
  17. loadComponent: () => import('./yiyun/yiyun.page').then( m => m.YiyunPage)
  18. },
  19. {
  20. path: 'store',
  21. loadComponent: () => import('./store/store.page').then( m => m.StorePage)
  22. },
  23. {
  24. path: 'me',
  25. loadComponent: () => import('./me/me.page').then( m => m.MePage)
  26. },
  27. ];