elk/app.vue

21 lines
708 B
Vue
Raw Normal View History

<script setup lang="ts">
setupI18n()
2022-12-23 22:47:13 +00:00
setupFontSize()
2022-11-30 00:22:35 +00:00
setupPageHeader()
2022-12-09 21:18:21 +00:00
provideGlobalCommands()
2022-11-23 02:16:31 +00:00
// We want to trigger rerendering the page when account changes
const key = computed(() => `${currentUser.value?.server ?? currentServer.value}:${currentUser.value?.account.id || ''}`)
const { params } = useRoute()
2022-11-13 05:34:43 +00:00
</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 to remove conditional loading -->
<NuxtPage v-if="(!params.account && $route.path !== '/signin/callback') || isMastoInitialised" />
2022-11-13 05:34:43 +00:00
</NuxtLayout>
2022-12-23 15:08:36 +00:00
<AriaAnnouncer />
2022-11-13 05:34:43 +00:00
</template>