12345678910111213141516171819 |
- import { NgModule } from "@angular/core";
- import { RouterModule, Routes } from "@angular/router";
- const routes: Routes = [
- {
- path: '',
- redirectTo:'manage',
- pathMatch: "full",
- },
- {
- path: 'manage',
- children:[
- ]
- }
- ];
- @NgModule({
- imports: [RouterModule.forChild(routes)],
- exports: [RouterModule],
- })
- export class NavProRoutingModule {}
|