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