20 lines
534 B
Vue
20 lines
534 B
Vue
<template>
|
|
<layout>
|
|
<div class="flex h-full w-full flex-col md:flex-row ">
|
|
<chat-history class="flex-none w-64" />
|
|
<div class="flex-1 mr-2 overflow-hidden bg-white rounded-xl">
|
|
<chat-guide />
|
|
<!-- <chat-box /> -->
|
|
</div>
|
|
<TaskList />
|
|
</div>
|
|
</layout>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import TaskList from '@renderer/components/TaskList/index.vue'
|
|
import ChatHistory from './ChatHistory.vue'
|
|
import ChatGuide from './ChatGuide.vue'
|
|
import ChatBox from './ChatBox.vue'
|
|
</script>
|