gwenaelp / vfg-field-array

A vue-form-generator field to handle arrays
MIT License
39 stars 24 forks source link

Fix `[Vue warn]: You may have an infinite update loop in a component render function.` #12

Closed iurquiza closed 5 years ago

iurquiza commented 5 years ago

generateSchema was mutating state on render causing an infinite loop because of how objects are passed in Javascript, by “copy of a reference”, but the object’s contents are passed by “reference”.

gwenaelp commented 5 years ago

Thank you very much for your PR, I merged it!