Appearance
Chat Components – Demo
vue
<script setup>
import ChatViewWrapper from "@/components/ChatAgentComponents/ChatComponents/ChatViewWrapper.vue";
import DraggableChatBoxWrapper from "@/components/ChatAgentComponents/ChatComponents/DraggableChatBoxWrapper.vue";
</script>
<template>
<section class="chat-shell-demo">
<ChatViewWrapper />
<DraggableChatBoxWrapper />
</section>
</template>