From 63693f7a836d858bbf25cd1e665eb643d3efc87c Mon Sep 17 00:00:00 2001 From: cherishsince Date: Fri, 24 May 2024 16:42:27 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E8=A7=A3=E5=86=B3todo=E3=80=91chat=20?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E9=80=89=E4=B8=AD=E5=AF=B9=E8=AF=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ai/chat/Conversation.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/ai/chat/Conversation.vue b/src/views/ai/chat/Conversation.vue index 4b2d60ef..3c0af731 100644 --- a/src/views/ai/chat/Conversation.vue +++ b/src/views/ai/chat/Conversation.vue @@ -387,6 +387,8 @@ onMounted(async () => { // 首次默认选中第一个 if (conversationList.value.length) { activeConversationId.value = conversationList.value[0].id + // 回调 onConversationClick + await emits('onConversationClick', conversationList.value[0]) } } })