mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 00:19:59 +00:00
3b92b27cc8
Co-authored-by: Daniel Roe <daniel@roe.dev>
17 lines
427 B
Vue
17 lines
427 B
Vue
<script setup>
|
|
usePageHeader()
|
|
|
|
// We want to trigger rerendering the page when account changes
|
|
const key = computed(() => useMasto().instances.config.url || 'default')
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLoadingIndicator color="repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)" />
|
|
<NuxtLayout :key="key">
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
<TeleportTarget
|
|
id="teleport-end"
|
|
/>
|
|
</template>
|