mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-06-19 06:42:00 +08:00
21 lines
495 B
Vue
21 lines
495 B
Vue
<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: 'ChatConversation' })
|
|
</script>
|