vuejs-storage
vuejs-storage copied to clipboard
Vue and Vuex plugin to persistence data with localStorage/sessionStorage
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: {...
**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.  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...