[Vuejs]-Add a watcher for form fields

0👍

In Vue data flows only one way, so the change of data in your Update component will be reflected on form-text-field, but not the other way around. To create 2-way data binding you should use v-model.

I suppose form-text-field is one of your custom components, in that case you should create a custom v-model for it. See: Customizing Component v-model

If you can’t get it work post your implementation of form-text-field here, so we can help.

Leave a comment