none.vue 321 B

123456789101112131415
  1. <template>
  2. <div class="flex flex-col w-screen h-screen bg-background-100 text-foreground select-none">
  3. <main class="flex-auto">
  4. <slot />
  5. </main>
  6. </div>
  7. </template>
  8. <script setup lang="ts">
  9. import { updateColors } from '~/composables/useColors'
  10. onMounted(() => {
  11. updateColors('#212121')
  12. })
  13. </script>