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

Add useful undo/redo parameters to go N back/forward or go to N step.

Open wbern opened this issue 5 years ago • 1 comments

To save some performance, I wish I could do that.

wbern avatar Oct 17 '19 18:10 wbern

@wbern Due to a limitation of Vue/Vuex, no performance would actually be saved: https://github.com/vuejs/vuex/issues/651

Vuex-Undo-Redo still has to dispatch each mutation, and each mutation triggers the reactivity of each affected component. This makes "undo" very slow for higher number of steps.

caugner avatar Jul 08 '20 10:07 caugner