parent
4f09794021
commit
2e5270f453
2 changed files with 8 additions and 10 deletions
6
app.vue
6
app.vue
|
@ -6,14 +6,14 @@ 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()
|
||||
const { params } = 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" />
|
||||
<!-- TODO: rework the /[account] routes to remove conditional loading -->
|
||||
<NuxtPage v-if="!params.account || isMastoInitialised" />
|
||||
</NuxtLayout>
|
||||
<PWAPrompt />
|
||||
</template>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue