owltide/app.vue

18 lines
389 B
Vue
Raw Permalink Normal View History

<!--
SPDX-FileCopyrightText: © 2025 Hornwitser <code@hornwitser.no>
SPDX-License-Identifier: AGPL-3.0-or-later
-->
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>