elementui of el-input Enter refresh problem solving

First prevent the default behavior on el-form:


16503929-452c0736f33631bc.png

That is, plus @ submit.native.prevent.

Then in the el-input response plus ENTER:

Ordinary vue input

@keyup.enter="func1(param1)"

element el-input

@keyup.enter.native="func2(param2)"


16503929-d2413b24de60dab2.png

It's that simple, toss for 20 minutes, vomiting, online method is seldom mentioned the need to prevent the default behavior el-form, I have to stop here, do not know why not stop me is not enough

Guess you like

Origin blog.csdn.net/weixin_34032779/article/details/90974889