在新的Angular2路线中重定向

时间:2016-07-30 11:07:06

标签: javascript angular angular2-routing

如何在新的Angular 2路由器中使用重定向到路由,例如' redirectTo'测试版中的一个?任何' plnkr.co'例子非常感谢。

1 个答案:

答案 0 :(得分:0)

工作演示https://plnkr.co/edit/hXJ6ZRv81kt4rvWhxoBD?p=preview

const routes: RouterConfig = [

      { path: '', redirectTo: 'home', terminal: true },
      { path: 'home', component: HomeComponent},
      { path: 'dashboard', component: DashboardCompnent}

];