1. 1
    Define and configure a route with the Angular router
    2m 36s

Define and configure a route with the Angular router

Share this video with your friends

Send Tweet

Components are first class citizens in an Angular application. Therefore, naturally each route points to an Angular component which gets activated whenever that route is triggered. In this lesson we will learn how to define such “routing components”, how to configure them on our router and how to activate them accordingly. Note, the router has been already installed using npm install @angular/router --save.