This page looks best with JavaScript enabled

Persistent Storage in VueJS

 ·   ·  ☕ 3 min read

VueJS is massively useful tool. And, I love churning out SFCs like there’s no tomorrow.

Vue helps us provide a super user experience. Combine it with Vuetify, Buefy and the like, and you have an application that is loved by all.

Except, when the user hits F5 in the browser.

Refreshing the browser will reset state. The typical state stored with Vuex is dissolved and may take the auth./login info with it if you have designed auth. in such a way. This is not a good experience for anyone.

One of the ways in which this problem can be solved is by pushing the state in Vuex to local storage. By doing that not only are the auth. details saved across browser sessions, but we can cache static data to make our application ‘feel’ faster.

Vue does not provide a standard way to manage local storage. Although it is not difficult to push the state to local storage by yourself (see this), you can speed up the process by leveraging Vue plugins.

There are two popular plugins that do this job well -

  1. vuex-persist
  2. vuex-persistedstate

While I started with vuex-persistedstate, which appears to be more popular of the two, I switched to vuex-persist in the projects that I did over the last six months. I refrain from directly comparing them since they are both great plugins, but I liked the way vuex-persist is documented.

vuex-persist provides the following functionality -

  • save state to local storage
  • support for multiple types of storage incl. local storage
  • use filters to selectively store state
  • store partial states
  • .. and the most appreciated of them all - save parts to local storage and parts to session storage
How to use vuex-persist?

You only have to do two things -

  1. Install vuex-persist
    yarn add vuex-persist
    
  2. Read docs at https://github.com/championswimmer/vuex-persist
How I use vuex-persist?

This is opinionated usage of vuex-persist. So, don’t start shooting (yet).

As is typical, I have Vuex modules for entities. Variables are centralized and stored in the Vuex module unless they are hyper-local to a component.

Next, identify three types of modules -

  1. Variables that need to go to cookie (e.g. authentication token)
  2. Variables that need to go in local storage (e.g. Todo detail )
  3. Rest of variables that can stay in Vuex state (e.g. Todo list query results)

Local storage is not secure and data in the storage can be accessed by all and sundry - hence the need to send sensitive data incl. auth. information and tokens to cookies.

Not all variables need to be stored - identify the modules and variables that need to be.

Subsequently, make changes to Vuex store. In index.js (the main vuex store), initialize vuex-persist by introducing the following code.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import VuexPersist from "vuex-persist";

// ..
// code
// ..

Vue.use(Vuex);

// ..
// more code
// ..

const vuexCookie = new VuexPersist({
  key: "cookieStore", // The key to store the state on in the storage provider.
  restoreState: (key, storage) => Cookies.getJSON(key),
  saveState: (key, state, storage) =>
    Cookies.set(key, state, {
      expires: 3, // expire in 3 days
    }),
  modules: ["authentication"], //only save user auth. module
});
const vuexLocal = new VuexPersist({
  key: "myLocalStore", // The key to store the state on in the storage provider.
  storage: localStorage, // or window.sessionStorage or localForage
  modules: ["todo", "user"], // store all variables in module in store
});

/*
.. some more code
*/

plugins: [vuexCookie.plugin, vuexLocal.plugin];

That’s all there is to it. Enjoy your life knowing that data is safe in local storage no matter how many times the user refreshes his browser.

Stay in touch!
Share on

Prashanth Krishnamurthy
WRITTEN BY
Prashanth Krishnamurthy
Technologist | Creator of Things