From 19c89738d886e9820cf59e9770742b218864a237 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Tue, 1 May 2018 10:05:46 -0400 Subject: [PATCH] ang2 Signed-off-by: Bill Erickson --- ang2-preso.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/ang2-preso.html b/ang2-preso.html index 6e39a856f..30b2b4371 100644 --- a/ang2-preso.html +++ b/ang2-preso.html @@ -3977,6 +3977,25 @@ ng-cli Command line tool for compiling, testing, building.
+

Lazy Loading

+
+
+
+
const routes: Routes = [
+  { path: '',
+    component: WelcomeComponent
+  }, {
+    path: 'staff',
+    resolve : {startup : EgBaseResolver},
+    loadChildren: './staff/staff.module#EgStaffModule'
+  }
+];
+
+
+

Integrated I18N

-- 2.11.0