[Vuejs]-How to bind nested vuex object to vuejs property in tiptap text editor?

0👍

Finally, I found the solution. The main problem was that the Vuex could not work with large object structures and my object editor contained many of functions and nested configuration subobjects and arrays. There are two ways to solve this.

  1. Change the structure of the vuex object
  2. Make a deep clone of the object in mutations in Vuex store.

Leave a comment