mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2026-08-05 21:32:23 +00:00
15 lines
366 B
Vue
15 lines
366 B
Vue
<template>
|
|
<div class="bg-white text-gray-900
|
|
dark:bg-gray-900 min-h-screen dark:text-slate-50">
|
|
<RouterView />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onMounted } from "vue";
|
|
import { RouterView } from "vue-router";
|
|
|
|
onMounted(() => {
|
|
document.documentElement.classList.add("dark");
|
|
})
|
|
</script> |