2025-03-01 16:52:23 +01:00
|
|
|
<template>
|
2025-03-07 12:41:57 +01:00
|
|
|
<Header />
|
2025-03-05 15:36:50 +01:00
|
|
|
<NuxtPage />
|
2025-03-01 16:52:23 +01:00
|
|
|
</template>
|
2025-03-05 15:36:50 +01:00
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import "~/assets/global.css";
|
2025-05-24 17:53:33 +02:00
|
|
|
const event = useRequestEvent();
|
|
|
|
const sessionStore = useSessionStore();
|
|
|
|
await callOnce("fetch-session", async () => {
|
|
|
|
await sessionStore.fetch(event);
|
|
|
|
})
|
2025-03-05 15:36:50 +01:00
|
|
|
</script>
|