mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-16 21:58:40 +00:00
10 lines
233 B
Vue
10 lines
233 B
Vue
<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>
|