2022-04-15 16:24:30 +02:00
|
|
|
<template>
|
|
|
|
<div id="mainWrapper">
|
2022-12-02 17:17:37 +01:00
|
|
|
<SideBar />
|
|
|
|
<MainContent />
|
2022-12-15 23:31:52 +07:00
|
|
|
<ExtraDrawer />
|
2022-12-02 17:17:37 +01:00
|
|
|
<ModalWrapper />
|
2022-04-15 16:24:30 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-04-15 19:00:08 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineAsyncComponent } from 'vue'
|
2022-04-15 16:24:30 +02:00
|
|
|
|
2022-12-07 14:31:38 +01:00
|
|
|
import SideBar from '@/components/layout/main-wrapper/sidebar/Sidebar.vue'
|
2022-06-10 12:47:46 +02:00
|
|
|
import MainContent from '@/components/layout/main-wrapper/MainContent.vue'
|
2022-12-15 23:31:52 +07:00
|
|
|
import ExtraDrawer from '@/components/layout/main-wrapper/ExtraDrawer.vue'
|
2022-06-10 12:47:46 +02:00
|
|
|
|
2022-04-20 14:38:38 +02:00
|
|
|
const ModalWrapper = defineAsyncComponent(() => import('@/components/layout/ModalWrapper.vue'))
|
2022-04-15 16:24:30 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
#mainWrapper {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
height: 0; // fix a flex-box bug https://github.com/philipwalton/flexbugs/issues/197#issuecomment-378908438
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
</style>
|