08‐Nested Route - zhamri/stiwk2124-Angular-Route GitHub Wiki

app.routes.ts

  {
    path: 'courses',
    component: Courses,
    children: [
      {
        path: 'stiwk2124',
        component: Stiwk2124,
      },
      {
        path: 'stiwk3014',
        component: Stiwk3014,
      },
    ]
  },

Add <router-outlet/> in courses.html

<p>course works!</p>
<router-outlet/>

Test

  1. http://localhost:4200/courses/stiwk2124
  2. http://localhost:4200/courses/stiwk3014