2024-08-09 23:15:54 +02:00
|
|
|
<script setup>
|
2020-07-28 12:24:39 +02:00
|
|
|
|
2024-08-09 23:15:54 +02:00
|
|
|
// const { serviceConfig } = useAuth()
|
2020-07-25 21:41:22 +02:00
|
|
|
|
2024-08-09 23:15:54 +02:00
|
|
|
const openSidebar = ref()
|
|
|
|
const config = useRuntimeConfig()
|
2020-07-25 21:41:22 +02:00
|
|
|
|
2024-08-09 23:15:54 +02:00
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<v-app>
|
2024-09-08 23:05:29 +02:00
|
|
|
<CoreAppBar />
|
2024-08-09 23:15:54 +02:00
|
|
|
<!-- <CoreSideBar v-model="openSidebar" /> -->
|
|
|
|
<!-- <CoreNavBar @toggleSidebar="openSidebar = !openSidebar" /> -->
|
2024-09-08 23:05:29 +02:00
|
|
|
<v-main>
|
|
|
|
<slot />
|
2024-08-09 23:15:54 +02:00
|
|
|
</v-main>
|
|
|
|
<!-- <CoreDialog /> -->
|
|
|
|
<!-- <CoreNotification /> -->
|
2024-09-08 23:05:29 +02:00
|
|
|
<CoreFooter />
|
|
|
|
<!-- <v-footer app height="40"><v-spacer />v.{{config.public.version}}</v-footer> -->
|
2024-08-09 23:15:54 +02:00
|
|
|
</v-app>
|
2019-04-03 00:25:12 +02:00
|
|
|
</template>
|
2020-02-05 00:42:05 +01:00
|
|
|
|