WIP - UI drawer initial

This commit is contained in:
Francisco Gaona
2026-01-07 22:11:36 +01:00
parent b34da6956c
commit 8ad3fac1b0
4 changed files with 169 additions and 13 deletions

View File

@@ -1,8 +1,7 @@
<script setup lang="ts">
import { ref } from 'vue'
import AppSidebar from '@/components/AppSidebar.vue'
import AIChatBar from '@/components/AIChatBar.vue'
import SoftphoneDialog from '@/components/SoftphoneDialog.vue'
import BottomDrawer from '@/components/BottomDrawer.vue'
import {
Breadcrumb,
BreadcrumbItem,
@@ -74,11 +73,7 @@ const breadcrumbs = computed(() => {
<slot />
</div>
<!-- AI Chat Bar Component -->
<AIChatBar />
<!-- Softphone Dialog (Global) -->
<SoftphoneDialog />
<BottomDrawer />
</SidebarInset>
</SidebarProvider>
</template>