发送消息后重新获得输入框焦点
This commit is contained in:
parent
99c8e04bb4
commit
9ae8088737
|
@ -13,6 +13,7 @@
|
||||||
class="inp"
|
class="inp"
|
||||||
type="text"
|
type="text"
|
||||||
v-model="words"
|
v-model="words"
|
||||||
|
ref="wordsInput"
|
||||||
:disabled="!canUse"
|
:disabled="!canUse"
|
||||||
@keyup.enter="send"
|
@keyup.enter="send"
|
||||||
@input="scrollToBottom"
|
@input="scrollToBottom"
|
||||||
|
@ -86,6 +87,9 @@ export default {
|
||||||
} else {
|
} else {
|
||||||
lastMessage.content = "[网络错误]";
|
lastMessage.content = "[网络错误]";
|
||||||
}
|
}
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.wordsInput.focus();
|
||||||
|
});
|
||||||
this.scrollToBottom();
|
this.scrollToBottom();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue