web-dave / angular_workshop

0 stars 0 forks source link

Child routing #4

Open web-dave opened 4 months ago

web-dave commented 4 months ago
  1. Generate BookList Component ng g c book-list
  2. Add Child routes to config
    app.routes.ts
...
{
    path: 'books',
    component: BooksComponent,
    children: [
      {
        path: '',
        component: BookListComponent,
      },
    ],
  },
...

  1. Add Router Outlet to Books Component
web-dave commented 4 months ago

NEXT