28 lines
516 B
Vue
28 lines
516 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>
|
|
<UHorizontalNavigation
|
|
:links="links"
|
|
class="border-b border-gray-200 dark:border-gray-800 mb-4"
|
|
/>
|
|
<NuxtPage class="col-span-10 md:col-span-8" />
|
|
</template>
|