[Vuejs]-Implementing undo/redo on array of objects using vuex

0๐Ÿ‘

โœ…

You should consider use some kind of data compress (like git does), with this you can continue using only the Vuex. Otherwise, consider use some local database as already recommended ;D

0๐Ÿ‘

you may want to connect your app to any simple database that store your previous object try firebase if it has no backend and make vuex just have the previous value but older ones saved to the firebase database by the mutation method in vuex

Leave a comment