How can I clone data from Vuex state to local data?

后端 未结 3 1922
别那么骄傲
别那么骄傲 2021-01-05 16:42

How can I clone data from vuex state to local data attribute?

State

this.tsStore.shemes

Data Attribute



        
3条回答
  •  青春惊慌失措
    2021-01-05 17:09

    try

    this.shemes = JSON.parse ( JSON.stringify ( this.tsStore.shemes) )
    

    This will clone all value and objects from the array in the store.

提交回复
热议问题