All checks were successful
Build and deploy updated apps / Build & deploy (push) Successful in 2m12s
15 lines
250 B
Vue
15 lines
250 B
Vue
<template>
|
|
<UApp :toaster="{ position: 'top-center' }">
|
|
<div class="flex flex-col min-h-dvh bg-neutral-50">
|
|
|
|
<AppHeader/>
|
|
|
|
<main class="flex-1">
|
|
<NuxtPage/>
|
|
</main>
|
|
|
|
<AppFooter/>
|
|
</div>
|
|
</UApp>
|
|
</template>
|