mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 16:45:43 +00:00
10 lines
182 B
Vue
10 lines
182 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<Html lang="en" :data-theme="theme" />
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const { theme } = useTheme();
|
|
</script>
|