Some checks failed
Build and deploy updated apps / Build & deploy (push) Has been cancelled
16 lines
280 B
Vue
16 lines
280 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> |