用 textarea 吧,检测到输入换行的时候就触发发送。
const enterIndex = e.target.value.indexOf('\n'); if( enterIndex >= 0 ) this.sendMessage(); // 检测到回车,直接发送出去