lemon-imui icon indicating copy to clipboard operation
lemon-imui copied to clipboard

enter键发送消息

Open wjh980515 opened this issue 2 years ago • 0 comments

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch [email protected] for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/lemon-imui/packages/components/editor.vue b/node_modules/lemon-imui/packages/components/editor.vue
index 9c1b6fe..22ad72b 100644
--- a/node_modules/lemon-imui/packages/components/editor.vue
+++ b/node_modules/lemon-imui/packages/components/editor.vue
@@ -36,7 +36,8 @@ export default {
     sendKey: {
       type: Function,
       default(e) {
-        return e.keyCode == 13 && e.ctrlKey === true;
+        //enter键发送消息
+        return e.keyCode == 13;
       },
     },
   },
@@ -138,7 +139,7 @@ export default {
           <div class="lemon-editor__tip">
             {useScopedSlot(
               this.IMUI.$scopedSlots["editor-footer"],
-              "使用 ctrl + enter 快捷发送消息",
+              "使用 enter 快捷发送消息",
             )}
           </div>
           <div class="lemon-editor__submit">

This issue body was partially generated by patch-package.

wjh980515 avatar Dec 28 '22 09:12 wjh980515