fix: Ensure parent node expands in Tab routing switch

This commit is contained in:
Xou 2024-05-07 14:46:24 +08:00
parent ad21f7f4fa
commit 0eb4dcbeb3

View File

@ -1,13 +1,25 @@
<script setup lang="ts">
import type { MenuInst } from 'naive-ui'
import { useAppStore } from '@/store'
import { useRouteStore } from '@/store/route'
const route = useRoute()
const appStore = useAppStore()
const routesStore = useRouteStore()
const menuInstRef = ref<MenuInst | null>(null)
watch(
() => route.path,
() => {
menuInstRef.value?.showOption(routesStore.activeMenu as string)
},
{ immediate: true },
)
</script>
<template>
<n-menu
ref="menuInstRef"
:collapsed="appStore.collapsed"
:indent="20"
:collapsed-width="64"