mirror of
https://github.com/haexhub/haex-hub.git
synced 2025-12-16 22:20:51 +01:00
14 lines
209 B
Vue
14 lines
209 B
Vue
<template>
|
|
<div class="h-full w-full">
|
|
<NuxtLayout name="app">
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: 'database',
|
|
})
|
|
</script>
|