使用(to, from)
观看路线非常简单。
我遇到的这个问题是要知道我何时在“顶级”组件之间移动。
我的意思是我有两条路线:
{
path: '/',
component: '/home',
children: [
{
path '',
redirect: 'a'
},
{
path: 'a',
component: A,
children: [
{
.....
}
]
},
{
path: 'b',
component: B,
children: [
{
.....
}
]
}
]
}
有问题的场景:我从Component A嵌套子窗口导航到Component B,然后单击BACK返回到A的相同嵌套组件。
在“from
”和“to
”中,我只能看到“A”路线(完全匹配+匹配)。
我没有IDEA来自组件B.
我如何才能访问此类信息?