1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-16 13:10:12 +03:00
elk/app.vue

16 lines
441 B
Vue
Raw Normal View History

2022-11-13 13:34:43 +08:00
<script setup>
2022-11-30 08:22:35 +08:00
setupPageHeader()
await setupI18n()
2022-11-23 10:16:31 +08:00
// We want to trigger rerendering the page when account changes
const key = computed(() => useMasto().instances.config.url || 'default')
2022-11-13 13:34:43 +08: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 13:34:43 +08:00
<NuxtPage />
</NuxtLayout>
2022-11-30 08:22:35 +08:00
<TeleportTarget id="teleport-end" />
2022-11-13 13:34:43 +08:00
</template>