fyne-on/app.vue

19 lines
519 B
Vue
Raw Normal View History

<script setup lang="ts">
2022-11-30 08:22:35 +08:00
setupPageHeader()
2022-12-27 19:37:22 +01:00
setupEmojis()
2022-12-10 05:18:21 +08:00
provideGlobalCommands()
2022-11-23 10:16:31 +08:00
2022-12-28 02:28:17 +01: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 13:34:43 +08: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 09:34:30 +01:00
<NuxtPage />
2022-11-13 13:34:43 +08:00
</NuxtLayout>
2022-12-23 16:08:36 +01:00
<AriaAnnouncer />
2022-11-13 13:34:43 +08:00
</template>