From 9ae808873709bd68d6450110692a043554d5024e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?TOP=E7=B3=AF=E7=B1=B3?= <1130395124@qq.com> Date: Mon, 27 Mar 2023 21:57:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E9=80=81=E6=B6=88=E6=81=AF=E5=90=8E?= =?UTF-8?q?=E9=87=8D=E6=96=B0=E8=8E=B7=E5=BE=97=E8=BE=93=E5=85=A5=E6=A1=86?= =?UTF-8?q?=E7=84=A6=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Home.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/Home.vue b/src/views/Home.vue index 472c07c..f6f9fe8 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -13,6 +13,7 @@ class="inp" type="text" v-model="words" + ref="wordsInput" :disabled="!canUse" @keyup.enter="send" @input="scrollToBottom" @@ -86,6 +87,9 @@ export default { } else { lastMessage.content = "[网络错误]"; } + this.$nextTick(() => { + this.$refs.wordsInput.focus(); + }); this.scrollToBottom(); }); },