vuex-persistedstate
import persistedState from 'vuex-persistedstate' const store = new Vuex.Store({ // ... plugins: [persistedState()] }) import persistedState from "vuex-persistedstate" const store = new Vuex.Store({ // ... plugins: [persistedState ({ storage: window.sessionStorage })] })
import Cookies from 'js-cookie'; import persistedState from "vuex-persistedstate" const store = new Vuex.Store({ // ... plugins: [persistedState ({ storage: getItem: key => Cookies.get(key), setItem: (key, value) => Cookies.set(key, value), removeItem: key => Cookies.remove(key) } })] }) secure-ls
import Vue from "vue"; import Vuex from "vuex"; import SecureLS from 'secure-ls'; import persistedState from "vuex-persistedstate"; const ls = new SecureLS({ encodingType: "aes", // encryption method isCompression: false, // whether to enable data compression encryptionSecret: "old-beauty" // }); Vue.use(Vuex); export default new Vuex.Store({ ... plugins: [persistedState({ // key: "123123", // key to store in storage storage: getItem: key => ls.get(key), setItem: (key, value) => ls.set(key, value), removeItem: key => ls.remove(key) } })], }); [Note] This is the end of this article about vuex forced data loss. For more relevant vuex data loss content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: mysql executes sql file and reports error Error: Unknown storage engine'InnoDB' solution
>>: Customization Method of Linux Peripheral File System
Preface Recently, I took over a client's nati...
Table of contents Overview computed watch monitor...
I have searched various major websites and tested...
In MySQL, you may encounter the problem of case s...
Why use Server-Side Rendering (SSR) Better SEO, s...
Download the MySQL installer Official download ad...
Table of contents 1 Test Cases 2 JS array dedupli...
In actual Web development, inserting images, incl...
The attributes of the <TD> tag are used to ...
Why is the title of the article “Imitation Magnif...
This article shares the specific code of JavaScri...
Table of contents Preface Mixin Mixin Note (dupli...
Table of contents 1. Data Type 1. What is MySQL s...
1. Download from the official website and unzip h...
Hyperlinks are the most frequently used HTML elem...