[Vuejs]-Vue: How to iteratively update properties in props the correct way

0👍

The correct way would be to not sync objects, because sync does not support that: https://github.com/vuejs/vue/issues/6241

Alternative solutions are:

  1. Put the method in the parent

  2. Sync each property as a separate prop

  3. Use a data store: https://v2.vuejs.org/v2/guide/state-management.html

Leave a comment