vue键盘事件在element-ui中使用要加 @keydown.enter.native=“submitForm(‘ruleForm‘)“才能用
在element组件标签上使用键盘事件的时候,需要在事件后面加上.native才能够使用,如下@keydown.enter.native="submitForm('ruleForm')"在element组件内部或者外部使用键盘事件的时候,正常使用就好了,如下@keydown.enter="submitForm('ruleForm')"...
·
在element组件标签上使用键盘事件的时候,需要在事件后面加上.native才能够使用,如下
@keydown.enter.native="submitForm('ruleForm')"
在element组件内部或者外部使用键盘事件的时候,正常使用就好了,如下
@keydown.enter="submitForm('ruleForm')"
更多推荐
已为社区贡献3条内容
所有评论(0)