GithubHelp home page GithubHelp logo

Comments (6)

r4fx avatar r4fx commented on August 12, 2024 12

Just return in reducer these states which need to be persist,
for example:

const store = new Vuex.Store({
    state: {
        userProfile: [],
        userIsAdmin: [],
        errorMessage: null
    },
    mutations: {

    },
    actions: {

    },
    plugins: [createPersistedState({
        reducer: state => ({
            userProfile: state.userProfile,
            userIsAdmin: state.userIsAdmin
            // errorMessage // this state is not included, no need to set to localStorage
        }),
    })]
});

from vuex-persistedstate.

joefresco avatar joefresco commented on August 12, 2024 5

@robinvdvleuten Your response to my reply would be greatly appreciated. Thanks

from vuex-persistedstate.

robinvdvleuten avatar robinvdvleuten commented on August 12, 2024

@joefresco if you try to delete the "root state" of your module, I can image that won't work as Vuex binds to these (read more about it here and here). If your object exceeds quota I would reconsider your application's architecture or move the object out of Vuex and handle it yourself. Hope that helps!

from vuex-persistedstate.

joefresco avatar joefresco commented on August 12, 2024

@robinvdvleuten I'm very confused. How do you use the reducer function if not to delete a specific state element from being persisted?

Basically, I am storing an object that isn't very big (maybe 20 KB) but still hits quota errors for an unknown reason in Chrome. That object is only needed one time ever for a user (a validation object) and does not need to be persisted to local storage anyway.

I just can't figure out how to get it to not be persisted.

from vuex-persistedstate.

duyetpt avatar duyetpt commented on August 12, 2024

So it think name reducer is confused. Because reducer in React as a function to mutate state.

from vuex-persistedstate.

my3188 avatar my3188 commented on August 12, 2024

@robinvdvleuten Your response to my reply would be greatly appreciated. Thanks

How did you solve this problem finally ?

from vuex-persistedstate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.