Browse Source

上传文件至 ''

0210329 8 months ago
parent
commit
b9d7a63ca4
1 changed files with 16 additions and 0 deletions
  1. 16 0
      tab1-routing.module.ts

+ 16 - 0
tab1-routing.module.ts

@@ -0,0 +1,16 @@
+import { NgModule } from '@angular/core';
+import { RouterModule, Routes } from '@angular/router';
+import { Tab1Page } from './tab1.page';
+
+const routes: Routes = [
+  {
+    path: '',
+    component: Tab1Page,
+  }
+];
+
+@NgModule({
+  imports: [RouterModule.forChild(routes)],
+  exports: [RouterModule]
+})
+export class Tab1PageRoutingModule {}