Detailed explanation of vuex persistence in practical application of vue

Detailed explanation of vuex persistence in practical application of vue

vuex persistence

vuex: Refresh the browser, the state in vuex will return to the initial state

Solution:

Use the vuex-persistedstate plugin (which actually exists automatically in local storage)

  • Install npm i -S vuex-persistedstate
  • Import and configuration: in index.js under store
import Vue from 'vue'
import Vuex from 'vuex'
//Introduce import persistedState from 'vuex-persistedstate'
Vue.use(Vuex)
export default new Vuex.Store({
  state: {
    num: null,
    name: null
  },
  mutations:
    getNum(state, val) {
      state.num = val
    },
    getName(state, val) {
      state.name = val
    }
  },
  //Configure plugins: [
    persistedState({
    	//By default, localStorage is used to solidify data. SessionStorage can also be used. The configuration is the same: storage: window.localStorage,
      reducer(val) {
        return {
        // Only store the value num in state: val.num,
          name: val.name
        }
      }
    })
  ]
})

I assign values ​​to variables in the state of vuex in the Home component

created(){
    this.$store.commit('getNum',3)
    this.$store.commit('getName','胡歌')
  },

Reference in H component

<template>
  <div>
      {{$store.state.num}}
      {{$store.state.name}}
  </div>
</template>

In this way, when refreshing the H component, the variables in $store.state will not change. In fact, they are automatically stored in the local storage.

insert image description here

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • How to implement data persistence using the vuex third-party package
  • 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

<<:  How to use CSS to pull down a small image to view a large image and information

>>:  The leftmost matching principle of MySQL database index

Recommend

How to use nginx as a proxy cache

The purpose of using cache is to reduce the press...

Ubuntu installation Matlab2020b detailed tutorial and resources

Table of contents 1. Resource files 2. Installati...

Teach you how to get the pointer position in javascript

The method of obtaining the position of the point...

Vue implements calling PC camera to take photos in real time

Vue calls the PC camera to take pictures in real ...

Summary of MySQL Undo Log and Redo Log

Table of contents Undo Log Undo Log Generation an...

How to set up Spring Boot using Docker layered packaging

The Spring Boot project uses docker containers, j...

Mysql multi-condition query statement with And keyword

MySQL multi-condition query with AND keyword. In ...

Summarize the problems encountered in using Vue Element UI

Table of contents 1. DateTimePicker date selectio...

SQL insert into statement writing method explanation

Method 1: INSERT INTO t1(field1,field2) VALUE(v00...

JavaScript to achieve tab switching effect

This article shares the specific code of JavaScri...

Detailed steps for installing and configuring MySQL 8.0 on CentOS

Preface Here are the steps to install and configu...

MySQL Null can cause 5 problems (all fatal)

Table of contents 1. Count data is lost Solution ...