How can I clone data from vuex state to local data attribute?
State
this.tsStore.shemes
Data Attribute
try
this.shemes = JSON.parse ( JSON.stringify ( this.tsStore.shemes) )
This will clone all value and objects from the array in the store.