Skip to content
Advertisement

vue js disable input if value hasn’t changed

I have an input with an initial value:

JavaScript

However the disabled binding gives an error: Cannot read property defaultValue of undefined. Best way to do this without spamming vm.data too much?

Advertisement

Answer

The error:

Cannot read property defaultValue of undefined

Is because the ref is not available so soon:

An important note about the ref registration timing: because the refs themselves are created as a result of the render function, you cannot access them on the initial render – they don’t exist yet! $refs is also non-reactive, therefore you should not attempt to use it in templates for data-binding.

And when you add it to the button‘s template, it tries to use it too soon.

The workaround would be to add a simple conditional:

JavaScript

But don’t be happy just yet.


The defaultValue won’t have the value you think

When using v-model, defaultValue will actually always be empty string ("") because Vue initially renders the <input> with an empty value.

To use a variable in the disabled button like you want, my suggestion is: use a mouted() logic to “save” the initial value and, in the button template, compare to it instead of defaultValue.

Demo below.

JavaScript
JavaScript

Alternative: Going Vue all the way

Of course, if it’s a possibilty, you should take advantage of Vue’s data-driven reactive nature, as tackling with the DOM is always tricky.

The solution would be to just create another variable and populate it on mounted():

JavaScript
JavaScript

Or, if you can set both name and defaultName to the same initial value, the mounted() logic above wouldn’t even be necessary.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement