crm/frontend/src/components/Layouts/DesktopLayout.vue
Shariq Ansari e9afb11407 fix: moved toggle theme to different section
main area bg-surface-white
2024-11-28 15:46:47 +05:30

16 lines
425 B
Vue

<template>
<div class="flex h-screen w-screen">
<div class="h-full border-r bg-surface-menu-bar">
<AppSidebar />
</div>
<div class="flex-1 flex flex-col h-full overflow-auto bg-surface-white">
<AppHeader />
<slot />
</div>
</div>
</template>
<script setup>
import AppSidebar from '@/components/Layouts/AppSidebar.vue'
import AppHeader from '@/components/Layouts/AppHeader.vue'
</script>