forked from FoundKeyGang/FoundKey
fix: change keypress to keydown (#8192)
This commit is contained in:
parent
fa554f1684
commit
562c4d99e6
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
|||
ref="text"
|
||||
v-model="text"
|
||||
:placeholder="$ts.inputMessageHere"
|
||||
@keypress="onKeypress"
|
||||
@keydown="onKeydown"
|
||||
@compositionupdate="onCompositionUpdate"
|
||||
@paste="onPaste"
|
||||
></textarea>
|
||||
|
@ -141,7 +141,7 @@ export default defineComponent({
|
|||
//#endregion
|
||||
},
|
||||
|
||||
onKeypress(e) {
|
||||
onKeydown(e) {
|
||||
this.typing();
|
||||
if ((e.which == 10 || e.which == 13) && (e.ctrlKey || e.metaKey) && this.canSend) {
|
||||
this.send();
|
||||
|
|
Loading…
Reference in a new issue