vuejs-storage icon indicating copy to clipboard operation
vuejs-storage copied to clipboard

Vue and Vuex plugin to persistence data with localStorage/sessionStorage

Results 5 vuejs-storage issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, this looks like a great library, but do you plan to update it to support Vue 3? I'm assuming it doesn't support Vue 3 since the last release was...

Please check changes in merge.ts. That allows restoring initial null object from storage.

This is not a bug. It is a request / question. Let say you have a standard vuex structure with a few modules ``` export default new Vuex.Store({ modules: {...

enhancement

**Why can't it be used like this?** plugins: [ vuejsStorage( { namespace: "superAdmin.sessionStorage", driver: vuejsStorage.drivers.sessionStorage, keys: ["token"] }, { namespace: "superAdmin.localStorage", driver: vuejsStorage.drivers.localStorage, keys: ["user"] } ) ]

2.4.0 has this bug. 2.3.3 is ok. ![image](https://user-images.githubusercontent.com/46688/40546956-30d117a2-6063-11e8-9ca2-15dfa8576792.png) my `store/index.ts` file ```js import Vue from "vue" import Vuex from "vuex" import vuejsStorage from "vuejs-storage" const getters: any = require("./getters") import...