定义路由之间的链接

使用RouterLink指令添加链路到路由。

例如,以下代码定义了在路径component-one的路由的链接。

  1. <a [routerLink]="['/component-one']">Component One</a>

Navigating Programmatically

或者,你可以通过调用route 上的navigate 功能导航到路由:

  1. this.router.navigate(['/component-one']);