feat : working UI for words

This commit is contained in:
2024-12-29 19:34:26 +01:00
parent d49813e776
commit 3830ea84c8
23 changed files with 441 additions and 129 deletions
+12 -3
View File
@@ -1,11 +1,20 @@
<script lang="ts">
import 'reflect-metadata';
<script setup lang="ts">
import { useUserStore } from '~/store/user.store';
const userStore = useUserStore();
const req = await userStore.whoami()
</script>
<template>
<div>
<NuxtRouteAnnouncer />
<NuxtWelcome />
<NuxtLayout>
<NuxtLoadingIndicator> Loading... </NuxtLoadingIndicator>
<Header />
<NuxtPage />
</NuxtLayout>
</div>