16 lines
294 B
Vue

<template>
<!-- <UApp :toaster="{ position: 'top-center' }">-->
<div class="flex flex-col min-h-dvh bg-neutral-50">
<AppHeader/>
<main class="flex-1">
<slot/>
</main>
<AppFooter/>
</div>
<!-- </UApp>-->
</template>
<script setup lang="ts">
</script>