generated from Flycro/laravel-nuxt
27 lines
436 B
Vue
27 lines
436 B
Vue
<script setup lang="ts">
|
|
const links = [
|
|
{
|
|
label: 'Bücher',
|
|
icon: 'i-heroicons-book-open',
|
|
children: [
|
|
{
|
|
label: 'Übersicht',
|
|
to: '/book-recommendations',
|
|
icon: 'i-heroicons-eye',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: 'People',
|
|
to: '/login',
|
|
icon: 'i-heroicons-user-group',
|
|
},
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<UContainer>
|
|
<UNavigationTree :links="links" />
|
|
</UContainer>
|
|
</template>
|