laravel-nuxt/nuxt/app/pages/account.vue

31 lines
526 B
Vue

<script lang="ts" setup>
definePageMeta({
middleware: ['auth'],
})
const links = [
[
{
label: 'Account',
icon: 'i-heroicons-user',
to: '/account/general',
},
{
label: 'Devices',
icon: 'i-heroicons-device-phone-mobile',
to: '/account/devices',
},
],
]
</script>
<template>
<div>
<UNavigationMenu
:items="links"
class="border-b border-gray-200 dark:border-gray-800 mb-4"
/>
<NuxtPage class="col-span-10 md:col-span-8" />
</div>
</template>