我有两个页面,一个是egmMaster,另一个是报表,都具有Introduction菜单。
如果我从egmMaster单击“简介”,则应该加载component1, 否则,如果我从报告页面单击“简介”,则它应该加载组件2
我的路由代码是:
const ROUTES = [
{ path: '', redirectTo: 'login', pathMatch: 'full' },
{ path: 'login',
component: LoginComponent
},
{
path:'introduction',
component: introComponent1,
}
{
path:'introduction',
component: introComponent2,
}
];
如何基于URL路径重定向到组件