mirror of
https://github.com/versia-pub/frontend.git
synced 2026-01-26 12:26:02 +01:00
11 lines
219 B
Vue
11 lines
219 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>
|