You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
655 B
28 lines
655 B
<template>
|
|
<Topbar />
|
|
<Sidebar v-if="securityStore.isAuthenticated" />
|
|
<div
|
|
:class="{ 'app-main--no-sidebar': !securityStore.isAuthenticated }"
|
|
class="app-main"
|
|
>
|
|
<Breadcrumb v-if="showBreadcrumb" />
|
|
<slot />
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Breadcrumb from "../../components/Breadcrumb.vue"
|
|
import Topbar from "../../components/layout/Topbar.vue"
|
|
import Sidebar from "../../components/layout/Sidebar.vue"
|
|
import { useSecurityStore } from "../../store/securityStore"
|
|
|
|
defineProps({
|
|
showBreadcrumb: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
})
|
|
|
|
const securityStore = useSecurityStore()
|
|
</script>
|
|
|