修复路由变化不触发菜单状态更新问题

This commit is contained in:
chuan_wuhao 2022-11-24 16:18:13 +08:00
parent b23991a0ee
commit c2029d0fd8
2 changed files with 33 additions and 1 deletions

View File

@ -5,7 +5,7 @@
<link rel="icon" type="image/svg+xml" href="/ray.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ray template</title>
<script type="module" crossorigin src="/assets/index.6bb471d8.js"></script>
<script type="module" crossorigin src="/assets/index.f568b427.js"></script>
<link rel="stylesheet" href="/assets/index.4a9527dd.css">
</head>
<body>

View File

@ -7,6 +7,7 @@ import type { RouteRecordRaw } from 'vue-router'
export const useMenu = defineStore('menu', () => {
const router = useRouter()
const route = useRoute()
const { t } = useI18n()
const cacheMenuKey =
@ -47,6 +48,30 @@ export const useMenu = defineStore('menu', () => {
setCache('menuKey', key)
}
/**
*
* @param path
*
*
*/
const updateMenuKeyWhenRouteUpdate = (path: string) => {
const matchMenuItem = (options: MenuOption[]) => {
for (const i of options) {
if (i?.children?.length) {
matchMenuItem(i.children)
}
if (path === i.path) {
menuModelValueChange(i.path, i)
break
}
}
}
matchMenuItem(menuState.options)
}
/**
*
*
@ -108,6 +133,13 @@ export const useMenu = defineStore('menu', () => {
const spliceMenTagOptions = (idx: number) =>
menuState.menuTagOptions.splice(idx, 1)
watch(
() => route.fullPath,
(newData) => {
updateMenuKeyWhenRouteUpdate(newData)
},
)
return {
...toRefs(menuState),
menuModelValueChange,