Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. {
  2. path: 'dashboard',
  3. component: DashboardComponent,
  4. children: [
  5. {
  6. path: '',
  7. component: DashboardHomeComponent,
  8. pathMatch: 'full',
  9. },
  10. {
  11. path: 'em',
  12. component: EmComponent,
  13. }
  14. {
  15. path: 'ec',
  16. component: EcComponent,
  17. }
  18. ]
  19. }
  20.  
  21. <div class="Sidebar">
  22. <a routerLinkActive="li-bg" [routerLinkActiveOptions]="{exact: true}" routerLink="/">Dashboard</a>
  23. <a routerLink="/dashboard/my-profile">My profile</a>
  24. </div>
  25.  
  26. <div class="row">
  27. <div class="col">
  28. <a routerLink="/dashboard/em">Em Service</a>
  29. </div>
  30. <div class="col">
  31. <a routerLink="/dashboard/ec">Ec Service</a>
  32. </div>
  33. </row>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement