generated from Flycro/laravel-nuxt
32 lines
537 B
Vue
32 lines
537 B
Vue
<script setup lang="ts">
|
|
const links = [
|
|
{
|
|
label: 'Company',
|
|
icon: 'i-heroicons-building-office-2',
|
|
children: [
|
|
{
|
|
label: 'Overview',
|
|
to: '/login',
|
|
icon: 'i-heroicons-eye',
|
|
},
|
|
{
|
|
label: 'Add Company',
|
|
to: '/login',
|
|
icon: 'i-heroicons-plus-circle',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: 'People',
|
|
to: '/login',
|
|
icon: 'i-heroicons-user-group',
|
|
},
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<UContainer>
|
|
<UNavigationTree :links="links" />
|
|
</UContainer>
|
|
</template>
|