mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
23 lines
574 B
Vue
23 lines
574 B
Vue
<script setup>
|
|
|
|
// const { serviceConfig } = useAuth()
|
|
|
|
const openSidebar = ref()
|
|
const config = useRuntimeConfig()
|
|
|
|
</script>
|
|
<template>
|
|
<v-app>
|
|
<CoreAppBar />
|
|
<!-- <CoreSideBar v-model="openSidebar" /> -->
|
|
<!-- <CoreNavBar @toggleSidebar="openSidebar = !openSidebar" /> -->
|
|
<v-main>
|
|
<slot />
|
|
</v-main>
|
|
<!-- <CoreDialog /> -->
|
|
<!-- <CoreNotification /> -->
|
|
<CoreFooter />
|
|
<!-- <v-footer app height="40"><v-spacer />v.{{config.public.version}}</v-footer> -->
|
|
</v-app>
|
|
</template>
|
|
|