[Vuejs]-How can I prevent modal to hide when submitting form?

0👍

I you want you can submit the form from your js code instead of using submit button.
In Jquery it will look like this:

$("#MyForm").submit()

Using that you can control when the form is submitted according to the modal.
Hope it helped.

Leave a comment