Guest User

Untitled

a guest
Dec 11th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. RouterModule.forRoot([
  2. { path: '', component: HomeComponent, pathMatch: 'full'},
  3. { path: 'list/:itemList', loadChildren: './ui/list/lazy.module#LazyModule'},
  4. { path: 'item/:id', loadChildren: './ui/item/item.module#ItemModule'},
  5. { path: 'privacy', loadChildren: './ui/privacy/privacy.module#PrivacyModule'},
  6. { path: 'terms', loadChildren: './ui/terms/terms.module#TermsModule'},
  7. { path: 'contacts', loadChildren: './ui/contacts/contacts.module#ContactsModule'},
  8. { path: 'about', loadChildren: './ui/about/about.module#AboutModule'},
  9. ]),
Add Comment
Please, Sign In to add comment