2022-12-07 01:17:58 +03:00
|
|
|
<script setup lang="ts">
|
2022-12-17 19:55:29 +03:00
|
|
|
setupI18n()
|
2022-12-12 23:16:45 +03:00
|
|
|
setupLogging()
|
2022-11-30 03:22:35 +03:00
|
|
|
setupPageHeader()
|
2022-12-10 00:18:21 +03:00
|
|
|
provideGlobalCommands()
|
2022-11-23 05:16:31 +03:00
|
|
|
|
2022-11-27 18:13:04 +03:00
|
|
|
// We want to trigger rerendering the page when account changes
|
2022-12-01 18:42:03 +03:00
|
|
|
const key = computed(() => `${currentServer.value}:${currentUser.value?.account.id || ''}`)
|
2022-11-13 08:34:43 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-24 12:59:07 +03:00
|
|
|
<NuxtLoadingIndicator color="repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)" />
|
2022-11-27 18:13:04 +03:00
|
|
|
<NuxtLayout :key="key">
|
2022-12-17 19:55:29 +03:00
|
|
|
<NuxtPage v-if="isMastoInitialised" />
|
2022-11-13 08:34:43 +03:00
|
|
|
</NuxtLayout>
|
2022-12-18 02:29:16 +03:00
|
|
|
<PWAPrompt />
|
2022-11-13 08:34:43 +03:00
|
|
|
</template>
|