123456789101112131415161718192021 |
- import { NgModule } from "@angular/core";
- import { RouterModule, Routes } from "@angular/router";
- import { PageHomeComponent } from './page-home/page-home.component';
- const routes: Routes = [
- {
- path: 'home',
- component: PageHomeComponent,
- children:[
- // {
- // path: "",
- // redirectTo: "pay",
- // pathMatch: "full",
- // },
- ]
- }
- ];
- @NgModule({
- imports: [RouterModule.forChild(routes)],
- exports: [RouterModule],
- })
- export class NavAdminRoutingModule {}
|