How to implement data persistence using the vuex third-party package

How to implement data persistence using the vuex third-party package

Purpose:

Allow the state data managed in vuex to be stored locally at the same time. You can avoid the need for your own storage.

  • During the development process, user information (name, avatar, token) needs to be stored in vuex and locally.
  • If other modules also need to be persisted, they are also stored locally

1) First: We need to install a vuex plug-in vuex-persistedstate to support vuex state persistence.

npm i vuex-persistedstate

2) Then: create a modules file in the src/store folder, and create user.js and cart.js under modules

src/store/modules/user.js

// User module export default {
  namespaced: true,
  state () {
    return {
      // User information profile: {
        id: '',
        avatar: '',
        nickname: '',
        account: '',
        mobile: '',
        token: ''
      }
    }
  },
  mutations:
    // Modify user information, payload is the user information object setUser (state, payload) {
      state.profile = payload
    }
  }
}

3) Next: Import the user module in src/store/index.js.

import { createStore } from 'vuex'

import user from './modules/user'

export default createStore({
  modules:
    user
  }
})

4) Finally: Use the vuex-persistedstate plugin for persistence

import { createStore } from 'vuex'
+import createPersistedstate from 'vuex-persistedstate'

import user from './modules/user'

export default createStore({
  modules:
    user
  },
+ plugins: [
+ createPersistedstate({
+ key: 'erabbit-client-pc-store',
+ paths: ['user']
+ })
+ ]
})

Notice:

  • ===> By default, it is stored in localStorage
  • ===> key is the key name for storing data
  • ===> paths are the data stored in the state. If it is specific data under the module, the module name needs to be added, such as user.token
  • ===> Changes in local storage data can only be seen after the state is modified and triggered.

Summarize:

  • Implement data persistence in vuex based on third-party packages
  • The condition that triggers persistence is that the state changes

This is the end of this article about how to use the vuex third-party package to implement data persistence. For more relevant vuex data persistence content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Two implementation solutions for vuex data persistence
  • Ideas and codes for implementing Vuex data persistence
  • VUEX data persistence, example of re-acquisition after refresh
  • Vuex implements data state persistence
  • How to implement a simple vuex persistence tool
  • Detailed explanation of vuex persistence in practical application of vue

<<:  How to choose the right MySQL datetime type to store your time

>>:  Summary of MySQL database usage specifications

Recommend

Pure CSS3 mind map style example

Mind Map He probably looks like this: Most of the...

How to get the dynamic number of remaining words in textarea

I encountered a case at work that I had never wri...

Summary of solutions for MySQL not supporting group by

I downloaded and installed the latest version of ...

Complete step-by-step record of MySQL 8.0.26 installation and uninstallation

Table of contents Preface 1. Installation 1. Down...

Implementing license plate input function in WeChat applet

Table of contents Preface background Big guess Fi...

Summary of Docker Data Storage

Before reading this article, I hope you have a ba...

How to check and organize website files using Dreamweaver8

What is the purpose of creating your own website u...

Three JavaScript methods to solve the Joseph ring problem

Table of contents Overview Problem Description Ci...

IE6 BUG and fix is ​​a preventive strategy

Original article: Ultimate IE6 Cheatsheet: How To...

About dynamically adding routes based on user permissions in Vue

Display different menu pages according to the use...

This article will help you understand the life cycle in Vue

Table of contents 1. beforeCreate & created 2...

How to handle forgotten passwords in Windows Server 2008 R2

What to do if you forget Windows Server 2008R2 So...

Optimization methods when Mysql occupies too high CPU (must read)

When Mysql occupies too much CPU, where should we...

Summary of MySQL 8.0 Online DDL Quick Column Addition

Table of contents Problem Description Historical ...

50 Super Handy Tools for Web Designers

Being a web designer is not easy. Not only do you...