1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-27 14:28:10 +09:00
elk/app.vue

19 lines
519 B
Vue
Raw Normal View History

<script setup lang="ts">
2022-11-30 09:22:35 +09:00
setupPageHeader()
2022-12-28 03:37:22 +09:00
setupEmojis()
2022-12-10 06:18:21 +09:00
provideGlobalCommands()
2022-11-23 11:16:31 +09:00
2022-12-28 10:28:17 +09:00
await setupI18n()
// We want to trigger rerendering the page when account changes
const key = computed(() => `${currentUser.value?.server ?? currentServer.value}:${currentUser.value?.account.id || ''}`)
2022-11-13 14:34:43 +09:00
</script>
<template>
<NuxtLoadingIndicator color="repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)" />
<NuxtLayout :key="key">
2022-12-26 17:34:30 +09:00
<NuxtPage />
2022-11-13 14:34:43 +09:00
</NuxtLayout>
2022-12-24 00:08:36 +09:00
<AriaAnnouncer />
2022-11-13 14:34:43 +09:00
</template>