Browse Source

feat(novel-app): 添加 tab7 页面路由

18460000105 3 months ago
parent
commit
8f12b83810
1 changed files with 4 additions and 0 deletions
  1. 4 0
      novel-app/src/app/app.routes.ts

+ 4 - 0
novel-app/src/app/app.routes.ts

@@ -78,6 +78,10 @@ export const routes: Routes = [
   {
   {
     path: 'tab2',
     path: 'tab2',
     loadComponent: () => import('./tab2/tab2.page').then( m => m.Tab2Page)
     loadComponent: () => import('./tab2/tab2.page').then( m => m.Tab2Page)
+  },
+  {
+    path: 'tab7',
+    loadComponent: () => import('./tab7/tab7.page').then( m => m.Tab7Page)
   }
   }