You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removing a child node from a JSON object cannot be undo,
My store code is given below. export const formStore = defineStore('form', { state: () => ({ form: { title: "", spellCheck: true, set: [], id: "" } as FormInterface , }), getters: { }, actions: { }, })
First i push data to the set array and after i removed the item using the array splice function, Then I tried to undo and the undo function doesnt work. An error message indicates that some keys are missing.
The text was updated successfully, but these errors were encountered:
suneethdev
changed the title
Removing a child node from a JSON object cannot be undo
Removing a child node from a object cannot be undo
Nov 9, 2023
Removing a child node from a JSON object cannot be undo,
My store code is given below.
export const formStore = defineStore('form', { state: () => ({ form: { title: "", spellCheck: true, set: [], id: "" } as FormInterface , }), getters: { }, actions: { }, })
First i push data to the set array and after i removed the item using the array splice function, Then I tried to undo and the undo function doesnt work. An error message indicates that some keys are missing.
The text was updated successfully, but these errors were encountered: