nuxt-breeze/components/Navigation.vue

32 lines
607 B
Vue

<script setup lang="ts">
const links = [
{
label: 'Company',
icon: 'i-heroicons-building-office-2',
children: [
{
label: 'Overview',
to: '/partner/overview',
icon: 'i-heroicons-eye',
},
{
label: 'Add Company',
to: '/pro/components/docs/docs-search',
icon: 'i-heroicons-plus-circle',
},
],
},
{
label: 'People',
to: '/pro/components/docs/docs-search-button',
icon: 'i-heroicons-user-group',
},
]
</script>
<template>
<UContainer>
<UNavigationTree :links="links" />
</UContainer>
</template>