cineclub-site/front/layouts/admin.vue

12 lines
263 B
Vue

<template>
<AdminHeader v-if="authStore.isLogged" />
<div class="container"><slot /></div>
</template>
<script setup lang="ts">
import { useAuthStore } from "~/stores/authStore"
const authStore = useAuthStore()
</script>
<style scoped lang="sass"></style>