In Vue.js, you can easily disable a button by using the :disabled attribute binding, which evaluates to a boolean value. If the value is true, the button will be disabled, and if it’s false, the button will be enabled.
Here’s a step-by-step example to illustrate how to disable a button based on a condition in Vue.js:
Example
Create a Vue Component
In this example, we will create a simple Vue component that has a button and an input field. The button will be disabled until the input field has some text.
<template> <div> <input v-model="inputText" placeholder="Type something..."> <button :disabled="!inputText">Submit</button> </div> </template> <script> export default { data() { return { inputText } } } </script>
2. Vue Instance: