Guest User

Untitled

a guest
Mar 18th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. const routes = [
  2. {
  3. path: 'zoo',
  4. loadChildren: './zoo/zoo.module#ZooModule',
  5. data: { title: 'Zoo' }
  6. }
  7. ]
  8.  
  9. @Component({
  10. template: `
  11. <ul>
  12. <ng-container *ngFor="let route of routes">
  13. <li *featureToggle="route.path">
  14. {{route.data.title}}
  15. </li>
  16. </ng-container>
  17. </ul>
  18. `
  19. })
  20. export class HeaderNav {
  21. routes = routes;
  22. }
Add Comment
Please, Sign In to add comment