Angular4 第三章(中) 重定向路由,子路由,辅助路由

1.重定向路由配置 const routes:Routes = [ {path:'', redirectTo: '/home', pathMatch:'full'}, {path:'home', component: HomeComponent }, // 默认展现HomeComponnet {path:'**', component: Code404Component} ]; pathMatch
相关文章
相关标签/搜索