2022-11-13 05:34:43 +00:00
|
|
|
<script setup>
|
2022-11-30 00:22:35 +00:00
|
|
|
setupPageHeader()
|
|
|
|
await setupI18n()
|
2022-11-23 02:16:31 +00:00
|
|
|
|
2022-11-27 15:13:04 +00:00
|
|
|
// We want to trigger rerendering the page when account changes
|
|
|
|
const key = computed(() => useMasto().instances.config.url || 'default')
|
2022-11-13 05:34:43 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-24 09:59:07 +00:00
|
|
|
<NuxtLoadingIndicator color="repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)" />
|
2022-11-27 15:13:04 +00:00
|
|
|
<NuxtLayout :key="key">
|
2022-11-13 05:34:43 +00:00
|
|
|
<NuxtPage />
|
|
|
|
</NuxtLayout>
|
2022-11-30 00:22:35 +00:00
|
|
|
<TeleportTarget id="teleport-end" />
|
2022-11-13 05:34:43 +00:00
|
|
|
</template>
|