ang2
authorBill Erickson <berickxx@gmail.com>
Tue, 1 May 2018 13:31:06 +0000 (08:31 -0500)
committerBill Erickson <berickxx@gmail.com>
Tue, 1 May 2018 13:31:06 +0000 (08:31 -0500)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
ang2-preso.adoc

index b4a407d..150ab5b 100644 (file)
@@ -49,6 +49,21 @@ A complete redesign and rewrite of AngularJS.
 * Integrated ReactiveX library for JavaScript (RxJS).
 * ng-cli Command line tool for compiling, testing, building.
 
+== Lazy Loading
+
+[source,js]
+----------------------------------------------------------------------
+const routes: Routes = [
+  { path: '',
+    component: WelcomeComponent
+  }, {
+    path: 'staff',
+    resolve : {startup : EgBaseResolver},
+    loadChildren: './staff/staff.module#EgStaffModule'
+  }
+];
+----------------------------------------------------------------------
+
 == Integrated I18N 
 
 [source,html]