我从事一个角度项目。我设置了空路径,但它直接重定向到/swap 组件上,我不明白为什么. 我像这样设置路径: 感谢您的帮助。 如果您想了解更多信息,请致电我:)
const appRoutes: Routes = [
{ path: '', component: AppComponent },
{ path: 'swap', component: SwapComponent}
];
请尝试这个....
const appRoutes: Routes =
[
{path: 'app', component: AppComponent },
{path: '', redirectTo: '/app', pathMatch: 'full' },
{ path: 'swap', component: SwapComponent},
];