61 lines
1.5 KiB
Vue
61 lines
1.5 KiB
Vue
![]() |
<template>
|
||
|
<div>
|
||
|
<n-menu
|
||
|
:value="activeKey"
|
||
|
:collapsed="app.menu.collapsed"
|
||
|
:collapsed-width="theme.menuStyle.collapsedWidth"
|
||
|
:collapsed-icon-size="22"
|
||
|
:options="menus"
|
||
|
:expanded-keys="expandedKeys"
|
||
|
:indent="18"
|
||
|
@update:value="handleUpdateMenu"
|
||
|
@update:expanded-keys="handleUpdateExpandedKeys"
|
||
|
/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { computed, ref, watch } from 'vue';
|
||
|
import { useRoute, useRouter } from 'vue-router';
|
||
|
import { NMenu } from 'naive-ui';
|
||
|
import type { MenuOption } from 'naive-ui';
|
||
|
import { useThemeStore, useAppStore } from '@/store';
|
||
|
import { menus } from '@/router';
|
||
|
import { GlobalMenuOption } from '@/interface';
|
||
|
|
||
|
const theme = useThemeStore();
|
||
|
const app = useAppStore();
|
||
|
const router = useRouter();
|
||
|
const route = useRoute();
|
||
|
|
||
|
const activeKey = computed(() => route.name as string);
|
||
|
const expandedKeys = ref<string[]>(getExpendedKeys());
|
||
|
|
||
|
function getExpendedKeys() {
|
||
|
const keys: string[] = [];
|
||
|
route.matched.forEach(item => {
|
||
|
if (item.children && item.children.length) {
|
||
|
keys.push(item.name as string);
|
||
|
}
|
||
|
});
|
||
|
return keys;
|
||
|
}
|
||
|
|
||
|
function handleUpdateMenu(key: string, item: MenuOption) {
|
||
|
const menuItem = item as GlobalMenuOption;
|
||
|
router.push(menuItem.routePath);
|
||
|
}
|
||
|
|
||
|
function handleUpdateExpandedKeys(keys: string[]) {
|
||
|
expandedKeys.value = keys;
|
||
|
}
|
||
|
|
||
|
watch(
|
||
|
() => route.name,
|
||
|
() => {
|
||
|
expandedKeys.value = getExpendedKeys();
|
||
|
}
|
||
|
);
|
||
|
</script>
|
||
|
<style scoped></style>
|