mirror of
https://github.com/versia-pub/frontend.git
synced 2026-06-14 07:29:15 +02:00
10 lines
221 B
Vue
10 lines
221 B
Vue
<template>
|
|
<slot />
|
|
<ComposerDialog v-if="authStore.isSignedIn" />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import ComposerDialog from "~/components/composer/dialog.vue";
|
|
|
|
const authStore = useAuthStore();
|
|
</script>
|