17 lines
238 B
Vue
17 lines
238 B
Vue
<script setup lang="ts">
|
|
import { useDark } from "@vueuse/core";
|
|
useHead({
|
|
bodyAttrs: {
|
|
class: "bg-neutral-300 dark:bg-neutral-900"
|
|
}
|
|
})
|
|
const d = useDark();
|
|
</script>
|
|
|
|
<template>
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |