houzhongjian
2024-08-08 820397e43a0b64d35c6d31d2a55475061438593b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
  <ContentWrap>
    <el-tabs>
      <el-tab-pane label="对话列表">
        <ChatConversationList />
      </el-tab-pane>
      <el-tab-pane label="消息列表">
        <ChatMessageList />
      </el-tab-pane>
    </el-tabs>
  </ContentWrap>
</template>
 
<script setup lang="ts">
import ChatConversationList from './ChatConversationList.vue'
import ChatMessageList from './ChatMessageList.vue'
 
/** AI 聊天对话 列表 */
defineOptions({ name: 'AiChatManager' })
</script>