From d6d134d1955e7de5e9a2b37761b69ade895679cc Mon Sep 17 00:00:00 2001 From: DCloud__JSON Date: Wed, 17 May 2023 21:47:41 +0800 Subject: [PATCH] 1.0.11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修复 流式响应模式,微信小程序端,部分情况下:消息内容突然变空白的问题 - 优化 uni-ai问题回复完成后,消息输入框自动获取焦点 - 修复 Vue3-web-pc端 敲完回车会先执行换行再发送消息的问题 --- changelog.md | 4 +++ components/uni-ai-msg/uni-ai-msg.vue | 40 ++++++++++++------------- package.json | 2 +- pages/chat/chat.vue | 44 ++++++++++++++++++---------- 4 files changed, 53 insertions(+), 37 deletions(-) diff --git a/changelog.md b/changelog.md index 412762e..b5653b2 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,7 @@ +## 1.0.11(2023-05-17) +- 修复 流式响应模式,微信小程序端,部分情况下:消息内容突然变空白的问题 +- 优化 uni-ai问题回复完成后,消息输入框自动获取焦点 +- 修复 Vue3-web-pc端 敲完回车会先执行换行再发送消息的问题 ## 1.0.10(2023-05-15) - 修复 Vue3-web-pc端 回车不能发送消息的问题(临时兼容方案,后续textarea组件不支持@keydown的问题修复后会调整) ## 1.0.9(2023-05-15) diff --git a/components/uni-ai-msg/uni-ai-msg.vue b/components/uni-ai-msg/uni-ai-msg.vue index 576d483..0033a2c 100644 --- a/components/uni-ai-msg/uni-ai-msg.vue +++ b/components/uni-ai-msg/uni-ai-msg.vue @@ -1,6 +1,6 @@