美文网首页
element ui的el-input如何监听回车键

element ui的el-input如何监听回车键

作者: Lusia_ | 来源:发表于2017-08-21 11:12 被阅读121次

@keyup.enter.native

组件没有内置keyup事件,所以给组件绑定原生事件 需要加上.native修饰符来给子组件传递事件。

例如 想在某个组件的根元素上监听一个原生事件。可以使用 .native 修饰 v-on :
<my-component v-on:click.native="doTheThing"></my-component>

相关文章

网友评论

      本文标题:element ui的el-input如何监听回车键

      本文链接:https://www.haomeiwen.com/subject/oydcdxtx.html