Hi, when exposing the done and undone stacks, the docs mention that we can access the stacks via: `const { done, undone } = this.$store.state;` This should be: `const { done, undone } = this.$store.state.undoRedoConfig;`
Hi, when exposing the done and undone stacks, the docs mention that we can access the stacks via:
const { done, undone } = this.$store.state;This should be:
const { done, undone } = this.$store.state.undoRedoConfig;