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

45 lines
894 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-25 20:48:48 +09:00
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${import.meta.env.DEV ? ' (dev)' : ''}`,
2022-11-13 14:34:43 +09:00
link: [
{
2022-11-24 13:48:59 +09:00
rel: 'icon', type: 'image/svg+png', href: '/favicon.png',
2022-11-13 14:34:43 +09:00
},
],
})
2022-11-23 11:16:31 +09:00
// We want to trigger rerendering the page when account changes
const key = computed(() => useMasto().instances.config.url || 'default')
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>
<NuxtLoadingIndicator color="repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)" />
<NuxtLayout :key="key">
2022-11-13 14:34:43 +09:00
<NuxtPage />
</NuxtLayout>
<TeleportTarget
id="teleport-end"
/>
2022-11-13 14:34:43 +09:00
</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>