Skip to content
Advertisement

Disable input conditionally (Vue.js)

I have an input:

JavaScript

and in my Vue.js component, I have:

JavaScript

validated being a boolean, it can be either 0 or 1, but no matter what value is stored in the database, my input is always disabled.

I need the input to be disabled if false, otherwise it should be enabled and editable.

Update:

Doing this always enables the input (no matter I have 0 or 1 in the database):

JavaScript

Doing this always disabled the input (no matter I have 0 or 1 in the database):

JavaScript

Advertisement

Answer

To remove the disabled prop, you should set its value to false. This needs to be the boolean value for false, not the string 'false'.

So, if the value for validated is either a 1 or a 0, then conditionally set the disabled prop based off that value. E.g.:

JavaScript

Here is an example.

JavaScript
JavaScript
Advertisement