We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7cb7371 + e938bae commit 31f7596Copy full SHA for 31f7596
content/angular.md
@@ -18,7 +18,7 @@ npm i -g @angular/cli
18
ng --version
19
```
20
21
-This guide uses Angular CLI 7.0.3.
+This guide uses Angular CLI 9.0.0.
22
23
After that run:
24
@@ -46,19 +46,19 @@ const routes: Routes = [
46
{
47
path: '',
48
pathMatch: 'full',
49
- loadChildren: './index/index.module#IndexModule'
+ loadChildren: () =>import('./index/index.module').then(m=>m.IndexModule)
50
},
51
52
path: 'about',
53
- loadChildren: './about/about.module#AboutModule'
+ loadChildren: () =>import('./about/about.module').then(m=>m.AboutModule)
54
55
56
path: 'example',
57
- loadChildren: './example/example.module#ExampleModule'
+ loadChildren: () =>import('./example/example.module').then(m=>m.ExampleModule)
58
59
60
path: 'media',
61
- loadChildren: './media/media.module#MediaModule'
+ loadChildren: () =>import('./media/media.module').then(m=>m.MediaModule)
62
}
63
];
64
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments