2022-09-01 22:32:03 +00:00
|
|
|
<template>
|
|
|
|
<NuxtLayout>
|
2022-10-01 20:13:53 +00:00
|
|
|
<Html lang="en" :data-theme="theme" />
|
2022-09-01 22:32:03 +00:00
|
|
|
<NuxtPage />
|
|
|
|
</NuxtLayout>
|
|
|
|
</template>
|
2022-10-01 20:13:53 +00:00
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
const { theme } = useTheme();
|
|
|
|
</script>
|