If I have a single form I was able to do disable/enable of submit button on that form using the below code.
But how do I achieve this if I have multiple forms ? Vuetify has this option or should I write some code to achieve on my own ?
How to achieve this if we have a single form
HTML part
<v-form v-model="isFormValid">
<!-- all input elements go here -->
</v-form>
<!-- disable if form is not valid -->
<v-btn :disabled="!isFormValid">Add</v-btn>
In script
data: () => ({
isFormValid: false,
})