cineclub-site/front/layouts/admin.vue

13 lines
263 B
Vue
Raw Normal View History

<template>
2022-12-25 23:52:43 +01:00
<AdminHeader v-if="authStore.isLogged" />
2022-05-30 00:19:28 +02:00
<div class="container"><slot /></div>
</template>
2022-12-25 23:52:43 +01:00
<script setup lang="ts">
import { useAuthStore } from "~/stores/authStore"
const authStore = useAuthStore()
</script>
2022-05-30 00:19:28 +02:00
<style scoped lang="sass"></style>