使用 Angular 2 beta.0
我有一个像这样的组件结构
App (Has RouteConfig)
-> List
| -> ListItem (Want to use RouterLink from here)
这会导致错误:Component "List" has no route config.
所以我像这样在组件上放了一个 RouteConfig List
......
@RouteConfig([
{path: '/:id', name: 'Details', component: Detail}
])
但我得到一个角度错误Error: Child routes are not allowed for "/list". Use "..." on the parent's route path.
我尝试在该路由配置中的 /list 路径之前和之后添加这 3 个点......但没有成功。
路由器上的文档非常简单,虽然我知道这应该基于 ui-router,但我没有看到添加嵌套路由的并行