kopia lustrzana https://github.com/elk-zone/elk
16 wiersze
462 B
Vue
16 wiersze
462 B
Vue
<script setup>
|
|
setupPageHeader()
|
|
await setupI18n()
|
|
|
|
// We want to trigger rerendering the page when account changes
|
|
const key = computed(() => currentServer.value + ':' + (currentUser.value?.account.id || ''))
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLoadingIndicator color="repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)" />
|
|
<NuxtLayout :key="key">
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
<TeleportTarget id="teleport-end" />
|
|
</template>
|