1.4.2
chrome
2.4.2
https://jsfiddle.net/hoanghiep/orgswrtf/2/
how to fix error auto submit reload page. {"error": "Please use POST request"}
I can not combine el-form-items with other el-input.
When you enter enter it automatically send form when not enough information
thanks your @Leopoldthecoder
<el-form @submit.prevent.native="checkEnter">
If you want to call specific functions rather than ignore the input completely, use
<el-input @keyup.enter.native="someAction()"></el-input>
You can use @keypress.enter.native="submitForm('resetPasswordForm')"
, Ref: https://polinwei.com/element-ui-prevent-form-submit/
Most helpful comment
<el-form @submit.prevent.native="checkEnter">