mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
20 lines
710 B
Vue
20 lines
710 B
Vue
<script setup lang="ts">
|
|
setupI18n()
|
|
setupPageHeader()
|
|
provideGlobalCommands()
|
|
|
|
// We want to trigger rerendering the page when account changes
|
|
const key = computed(() => `${currentUser.value?.server ?? currentServer.value}:${currentUser.value?.account.id || ''}`)
|
|
|
|
const { params, path } = useRoute()
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLoadingIndicator color="repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)" />
|
|
<NuxtLayout :key="key">
|
|
<!-- TODO: rework the /[account] routes and the /home (for sign in alias) to remove conditional loading -->
|
|
<NuxtPage v-if="(!params.account && path === '/home') || isMastoInitialised" />
|
|
</NuxtLayout>
|
|
<PWAPrompt />
|
|
</template>
|