Files
archy/packages/app/src/App.vue
T

18 lines
351 B
Vue
Raw Normal View History

<template>
<div class="h-dvh flex flex-col" :class="currentTheme">
<RouterView />
</div>
</template>
<script setup lang="ts">
import { onMounted } from 'vue'
import { RouterView } from 'vue-router'
import { useTheme } from '@/composables/useTheme'
const { currentTheme, initTheme } = useTheme()
onMounted(() => {
initTheme()
})
</script>