Skip to content

Commit 4039ed1

Browse files
committed
chore(angular): update version-test-routing.module
1 parent 2061a7b commit 4039ed1

File tree

6 files changed

+12
-128
lines changed

6 files changed

+12
-128
lines changed

packages/angular/test/apps/ng16/src/app/lazy/version-test/version-test-routing.module.ts

Lines changed: 0 additions & 25 deletions
This file was deleted.

packages/angular/test/apps/ng17/src/app/lazy/version-test/version-test-routing.module.ts

Lines changed: 0 additions & 25 deletions
This file was deleted.

packages/angular/test/apps/ng18/src/app/lazy/version-test/version-test-routing.module.ts

Lines changed: 0 additions & 25 deletions
This file was deleted.

packages/angular/test/apps/ng19/src/app/lazy/version-test/version-test-routing.module.ts

Lines changed: 0 additions & 25 deletions
This file was deleted.

packages/angular/test/apps/ng20/src/app/lazy/version-test/version-test-routing.module.ts

Lines changed: 0 additions & 25 deletions
This file was deleted.

packages/angular/test/base/src/app/lazy/version-test/version-test-routing.module.ts

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
import { NgModule } from "@angular/core";
22
import { RouterModule } from "@angular/router";
3-
import { VersionTestComponent } from "./version-test.component";
43

54
@NgModule({
65
imports: [
76
RouterModule.forChild([
87
{
9-
path: '',
10-
component: VersionTestComponent
8+
path: 'modal-nav-params',
9+
loadComponent: () => import('./modal-nav-params/modal-nav-params.component').then(m => m.ModalNavParamsComponent),
10+
},
11+
{
12+
path: 'bind-route/:id',
13+
data: {
14+
title: 'data:bindToComponentInputs'
15+
},
16+
resolve: {
17+
name: () => 'resolve:bindToComponentInputs'
18+
},
19+
loadComponent: () => import('./bind-component-inputs/bind-component-inputs.component').then(c => c.BindComponentInputsComponent)
1120
}
1221
])
1322
],

0 commit comments

Comments
 (0)