跳至主要內容

键盘事件

chanchaw小于 1 分钟element-plus

input

el-input 中使用键盘事件时需要用到 .native,因为 element-plusinput 进行了封装,原生事件不起作用,下面代码上面是原生 input 中使用键盘事件

<input v-model="form.name" placeholder="昵称" @keyup.enter="submit">
<el-input v-model="form.name" placeholder="昵称" @keyup.enter.native="submit"></el-input>