vuex-undo-redo icon indicating copy to clipboard operation
vuex-undo-redo copied to clipboard

Undo/Redo plugin for Vuex

Results 16 vuex-undo-redo issues
Sort by recently updated
recently updated
newest added

I am using Vue-Idle ,so after 30 second new mtation run ,which make "redo" stack empty.. because in plugin code Undone array become empty on new mutation. created() { if...

I'm trying to trace down performance issues with regard to the undo functionality provided by this plugin. When adding a `console.log` statement to `created()` here: https://github.com/anthonygore/vuex-undo-redo/blob/6e34a39718320fbf956fb505ed3b13857c9678ce/src/plugin.js#L17-L28 I noticed that this...

This code doesn't support mutation payloads that are arrays. The undo and redo simply detects them as standard objects and any array-reliant code in the mutation subsequently fails.

![image](https://user-images.githubusercontent.com/9999294/92399806-909c2600-f133-11ea-845c-7632a4eb921a.png) Hello, When i'm trying to install into vue with typescript it's also wanted types for this, where can i get them?

Hello, i am using Vuex Modules because my store is quite big. I have 1 module where i want to use this undo / redo functionality, the rest of the...

Is there a reason why the installation step says to add the `--save-dev` flag? My [understanding](https://stackoverflow.com/a/42206389/1927876) is that `--save-dev` is for things that you don't truly need for the application...

@anthonygore Would it be possible to push your release/version tags to GitHub?

Ran into this bug while using the plugin. If a Vuex mutator is called with an Array (e.g. `["a", "b", "c"]`) on undo/redo it will pass in an object with...

**Context**: I ran into the following caveat when accessing vuex-undo-redo from two components: * Component A provides buttons to undo/redo. * Component B attaches a global keydown handler (`document.addEventListener("keydown", this.handleKeydown);`)...