owltide/app.vue

14 lines
271 B
Vue
Raw Normal View History

2025-03-01 16:52:23 +01:00
<template>
<Header />
<NuxtPage />
2025-03-01 16:52:23 +01:00
</template>
<script setup lang="ts">
import "~/assets/global.css";
const event = useRequestEvent();
const sessionStore = useSessionStore();
await callOnce("fetch-session", async () => {
await sessionStore.fetch(event);
})
</script>