forked from mirrors/homebox
79f7ad40cb
* add user profiles and theme selectors * lowercase buttons by default * basic layout * (wip) init token APIs * refactor server to support variable options * fix types * api refactor / registration tests * implement UI for url and join * remove console.logs * rename repository factory * fix upload size
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>
|