Create a detail view under a parent route
问题 You surely know the heroes sample from angular 2 tutorial: https://angular.io/resources/live-examples/toh-5/ts/plnkr.html When you click one of those 4 top heroes you get from the /dashboard url to the detail/id url. That the whole dashboard component is switched with the detail component is fine! What I would like to have changed is that the url changes from /dashboard to /dashboard/detail/id So in my route config I just change path: '/detail/:id', to path: '/dashboard/detail/:id', That