[Vuejs]-Best way to save progress in Vue.js project

0👍

You can use localstorage to store the form.

https://fr.vuejs.org/v2/cookbook/client-side-storage.html

And there is an exemple here :

How to update object in local storage in vue js?

You have to stringify and parse the object to respectively store and retrieve it.

Leave a comment