26 lines
581 B
Vue
26 lines
581 B
Vue
<template>
|
|
<div class="bg h-screen flex flex-col">
|
|
<header-bar>
|
|
<drag-region class="w-full" />
|
|
</header-bar>
|
|
|
|
<layout>
|
|
<div class="flex h-full w-full flex-col md:flex-row">
|
|
<chat-history class="flex-none w-64" />
|
|
<div class="flex-1 overflow-auto px-5 bg-white rounded-xl">
|
|
<chat-guide />
|
|
<!-- <chat-box /> -->
|
|
</div>
|
|
</div>
|
|
|
|
</layout>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import ChatHistory from './ChatHistory.vue'
|
|
import ChatGuide from './ChatGuide.vue'
|
|
import ChatBox from './ChatBox.vue'
|
|
</script>
|
|
|