1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-27 14:28:10 +09:00
elk/app.vue

39 lines
515 B
Vue
Raw Normal View History

2022-11-13 14:34:43 +09:00
<script setup>
2022-11-23 22:06:27 +09:00
import { APP_NAME } from './constants'
2022-11-13 14:34:43 +09:00
useHead({
2022-11-23 22:06:27 +09:00
title: APP_NAME,
2022-11-13 14:34:43 +09:00
link: [
{
2022-11-23 22:06:27 +09:00
rel: 'icon', type: 'image/svg+xml', href: '/logo.svg',
2022-11-13 14:34:43 +09:00
},
],
})
2022-11-23 11:16:31 +09:00
// eslint-disable-next-line no-unused-expressions
isDark.value
2022-11-13 14:34:43 +09:00
</script>
<template>
2022-11-23 07:47:25 +09:00
<NuxtLoadingIndicator />
2022-11-13 14:34:43 +09:00
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<style>
html, body , #__nuxt{
height: 100vh;
margin: 0;
padding: 0;
}
html.dark {
2022-11-23 11:16:31 +09:00
color-scheme: dark;
}
html {
--at-apply: bg-base text-base;
2022-11-13 14:34:43 +09:00
}
</style>