Files
webapp-front/app.vue
T
2024-12-29 19:34:26 +01:00

22 lines
365 B
Vue

<script setup lang="ts">
import { useUserStore } from '~/store/user.store';
const userStore = useUserStore();
const req = await userStore.whoami()
</script>
<template>
<div>
<NuxtRouteAnnouncer />
<NuxtLayout>
<NuxtLoadingIndicator> Loading... </NuxtLoadingIndicator>
<Header />
<NuxtPage />
</NuxtLayout>
</div>
</template>