maxkb/ui/src/layout/components/top-bar/top-menu/index.vue
2023-10-16 18:58:51 +08:00

27 lines
609 B
Vue

<template>
<div class="top-menu-container flex h-full">
<MenuItem
:menu="menu"
v-hasPermission="menu.meta?.permission"
v-for="(menu, index) in topMenuList"
:key="index"
>
</MenuItem>
</div>
</template>
<script setup lang="ts">
import { computed } from 'vue'
import { getChildRouteListByPathAndName } from '@/router/index'
import MenuItem from './MenuItem.vue'
const topMenuList = computed(() => {
return getChildRouteListByPathAndName('/', 'home')
})
</script>
<style lang="scss" scope>
.top-menu-container {
align-items: center;
margin-bottom: -1px;
}
</style>