
Angular - RouterLink
This is the archived documentation for Angular v17. Please visit angular.dev to see this page for the current version of Angular.
Angular - Common Routing Tasks
Oct 24, 2023 · This topic describes how to implement many of the common tasks associated with adding the Angular router to your application.
RouterLink - ts - API - Angular
The RouterLink directives let you link to specific parts of your app. When the link is static, you can use the directive as follows: <a routerLink="/user/bob">link to user component</a>
Routing & Navigation - ts - GUIDE - Angular
The Angular Router enables navigation from one view to the next as users perform application tasks. This guide covers the router's primary features, illustrating them through the evolution of …
Angular - Router reference
Aug 29, 2023 · The RouterLink directives on the anchor tags give the router control over those elements. The navigation paths are fixed, so you can assign a string as a one-time binding to …
Angular - Add navigation with routing
Feb 28, 2022 · The routerLink is the selector for the RouterLink directive that turns user clicks into router navigations. It's another of the public directives in the RouterModule.
Angular - RouterModule
Adds directives and providers for in-app navigation among views defined in an application. Use the Angular Router service to declaratively specify application states and manage state …
Angular - Using Angular routes in a single-page application
Oct 24, 2023 · This tutorial describes how to build a single-page application, SPA that uses multiple Angular routes.
Angular - RouterLinkActive
This is the archived documentation for Angular v17. Please visit angular.dev to see this page for the current version of Angular.
Router tutorial: tour of heroes - Angular
This tutorial provides an extensive overview of the Angular router. In this tutorial, you build upon a basic router configuration to explore features such as child routes, route parameters, lazy load …