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:
-
Put the method in the parent
-
Sync each property as a separate prop
-
Use a data store: https://v2.vuejs.org/v2/guide/state-management.html
Source:stackexchange.com