homebox/frontend/layouts/default.vue

11 lines
233 B
Vue
Raw Normal View History

2022-09-01 22:32:03 +00:00
<script setup lang="ts"></script>
<template>
<div>
<AppToast />
<AppHeader />
<main class="p-8 dark:bg-gray-800 dark:text-white bg-white text-gray-800 min-h-screen">
<slot></slot>
</main>
</div>
</template>