vue add disabled to button code example
Example 1: disabled input fields vue
<input type="text" :disabled="validated == 1">
Example 2: vue disable button
Just bind the disabled attribute to a boolean value like
<button :disabled='isDisabled'>Send Form</button>
as in this example