Vuetify component v-form is not responding on the declared @submit event handler

前提是你 提交于 2019-12-05 01:26:21

Your submit button isn't inside the form so it's not triggering a submit event.

Either re-structure your markup or try setting an id on the form and use the form attribute on the button, eg

<v-form @submit.prevent="checkLogin" id="check-login-form">

and

<v-btn type="submit" color="success" form="check-login-form">Login</v-btn>

Note: The form attribute does not work for any version of Internet Explorer.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!