我有routeConfig如下,我正在使用HashLocationStrategy。
@RouteConfig([
{path: '/', name: 'Home', component: HomeComponent, useAsDefault: true},
{path: '/me', name: 'Profile', component: ProfileComponent}
])
如何使用angular2 routing从主页视图导航到个人资料视图中的div(或部分)(个人资料#技能)
如果是纯HTML,我会在 /profile.html#skills 上进行href。我不知道如何在angular2中做到这一点。可能是它很简单。感谢任何指针。
TIA