mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-19 10:06:38 +08:00
52 lines
1.4 KiB
Vue
52 lines
1.4 KiB
Vue
<template>
|
|
<n-scrollbar class="flex-1-hidden">
|
|
<n-menu
|
|
:value="activeKey"
|
|
:collapsed="app.siderCollapse"
|
|
:collapsed-width="theme.sider.collapsedWidth"
|
|
:collapsed-icon-size="22"
|
|
:options="routeStore.menus"
|
|
:expanded-keys="expandedKeys"
|
|
:indent="18"
|
|
@update:value="handleUpdateMenu"
|
|
@update:expanded-keys="handleUpdateExpandedKeys"
|
|
/>
|
|
</n-scrollbar>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, ref, watch } from 'vue';
|
|
import { useRoute } from 'vue-router';
|
|
import type { MenuOption } from 'naive-ui';
|
|
import { useAppStore, useThemeStore, useRouteStore } from '@/store';
|
|
import { useRouterPush } from '@/composables';
|
|
import { getActiveKeyPathsOfMenus } from '@/utils';
|
|
|
|
const route = useRoute();
|
|
const app = useAppStore();
|
|
const theme = useThemeStore();
|
|
const routeStore = useRouteStore();
|
|
const { routerPush } = useRouterPush();
|
|
|
|
const activeKey = computed(() => route.name as string);
|
|
const expandedKeys = ref<string[]>([]);
|
|
|
|
function handleUpdateMenu(_key: string, item: MenuOption) {
|
|
const menuItem = item as GlobalMenuOption;
|
|
routerPush(menuItem.routePath);
|
|
}
|
|
|
|
function handleUpdateExpandedKeys(keys: string[]) {
|
|
expandedKeys.value = keys;
|
|
}
|
|
|
|
watch(
|
|
() => route.name,
|
|
() => {
|
|
expandedKeys.value = getActiveKeyPathsOfMenus(activeKey.value, routeStore.menus);
|
|
},
|
|
{ immediate: true }
|
|
);
|
|
</script>
|
|
<style scoped></style>
|