koumoul-dev / vuetify-jsonschema-form

Create beautiful and low-effort forms that output valid data. Published on npm as @koumoul/vjsf.
https://koumoul-dev.github.io/vuetify-jsonschema-form/latest/
MIT License
548 stars 155 forks source link

v-model doesn´t update propertly #202

Closed selobu closed 3 years ago

selobu commented 3 years ago

I'm trying to make a buffer to store the data when some field in the form has changed, but for some reason the watch method is not capturing those events.

codepen

albanm commented 3 years ago

For now the model is mutated, not replaced (this might change in the future). Therefore you should use a watcher with the deep option.

selobu commented 3 years ago

Thank's a lot