25 lines
757 B
Vue
25 lines
757 B
Vue
![]() |
<template>
|
||
|
<n-menu :value="activeKey" mode="horizontal" :options="menus" @update:value="handleUpdateMenu" />
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { computed } from 'vue';
|
||
|
import { useRoute } from 'vue-router';
|
||
|
import type { MenuOption } from 'naive-ui';
|
||
|
import { useRouteStore } from '@/store';
|
||
|
import { useRouterPush } from '@/composables';
|
||
|
|
||
|
const route = useRoute();
|
||
|
const routeStore = useRouteStore();
|
||
|
const { routerPush } = useRouterPush();
|
||
|
|
||
|
const menus = computed(() => routeStore.menus as GlobalMenuOption[]);
|
||
|
const activeKey = computed(() => route.name as string);
|
||
|
|
||
|
function handleUpdateMenu(_key: string, item: MenuOption) {
|
||
|
const menuItem = item as GlobalMenuOption;
|
||
|
routerPush(menuItem.routePath);
|
||
|
}
|
||
|
</script>
|
||
|
<style scoped></style>
|