2022-04-03 01:20:55 +02:00
|
|
|
<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>
|
2022-04-03 01:20:55 +02:00
|
|
|
</template>
|
|
|
|
|
2022-12-25 23:52:43 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
import { useAuthStore } from "~/stores/authStore"
|
|
|
|
|
|
|
|
const authStore = useAuthStore()
|
|
|
|
</script>
|
2022-04-03 01:20:55 +02:00
|
|
|
|
2022-05-30 00:19:28 +02:00
|
|
|
<style scoped lang="sass"></style>
|