如何在新的Angular 2路由器中使用重定向到路由,例如' redirectTo'测试版中的一个?任何' plnkr.co'例子非常感谢。
答案 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}
];