gancio-upstream/layouts/default.vue

24 lines
574 B
Vue
Raw Permalink Normal View History

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>
<CoreAppBar />
2024-08-09 23:15:54 +02:00
<!-- <CoreSideBar v-model="openSidebar" /> -->
<!-- <CoreNavBar @toggleSidebar="openSidebar = !openSidebar" /> -->
<v-main>
<slot />
2024-08-09 23:15:54 +02:00
</v-main>
<!-- <CoreDialog /> -->
<!-- <CoreNotification /> -->
<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