1
0
Fork 1
mirror of https://github.com/hay-kot/homebox.git synced 2025-01-23 22:20:08 +00:00
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>