mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-16 21:58:40 +00:00
6a8a25e3f8
* wip: charts.js experimental work * update lock file * wip: frontend redesign * wip: more UI fixes for consistency across themes * cleanup * improve UI log * style updates * fix lint errors
10 lines
195 B
Vue
10 lines
195 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<Html lang="en" :data-theme="theme || 'homebox'" />
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const { theme } = useTheme();
|
|
</script>
|