frontend/app/layouts/default.vue

11 lines
219 B
Vue
Raw Normal View History

<template>
2025-12-09 22:32:22 +01:00
<slot/>
<ComposerDialog v-if="authStore.isSignedIn"/>
</template>
<script lang="ts" setup>
import ComposerDialog from "~/components/composer/dialog.vue";
const authStore = useAuthStore();
</script>