fix: in mixed layout mode, the sidebar does not display when the first child node is an external link (#6219)
Co-authored-by: wyc001122 <wangyongchao@testor.com.cn>
This commit is contained in:
parent
3d9dba965f
commit
34c4ecb047
@ -140,7 +140,10 @@ function useMixedMenu() {
|
|||||||
watch(
|
watch(
|
||||||
() => route.path,
|
() => route.path,
|
||||||
(path) => {
|
(path) => {
|
||||||
const currentPath = (route?.meta?.activePath as string) ?? path;
|
const currentPath = route?.meta?.activePath ?? route?.meta?.link ?? path;
|
||||||
|
if (willOpenedByWindow(currentPath)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
calcSideMenus(currentPath);
|
calcSideMenus(currentPath);
|
||||||
if (rootMenuPath.value)
|
if (rootMenuPath.value)
|
||||||
defaultSubMap.set(rootMenuPath.value, currentPath);
|
defaultSubMap.set(rootMenuPath.value, currentPath);
|
||||||
|
Loading…
Reference in New Issue
Block a user