form
form copied to clipboard
docs(vue): use event modifiers to enhance readability
Instead of using the arrow function:
(e) => {
e.preventDefault()
e.stopPropagation()
form.handleSubmit()
}
we can just use event modifiers like this:
@submit.prevent.stop="form.handleSubmit"
enhancing readability ✨