Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Wrong data after restore. #431

@papaIOprog

Description

@papaIOprog
  • vuex-persistedstate version: 4.1.0
  • node version: 14.15.4
  • npm (or yarn) version: 6.14.10

Relevant code or config:

export const state = () => ({
  colorScheme: {
      base: {"bg-color-primary": true},
      light: {"bg-color-primary-light": true},
      dark: {"bg-color-primary-dark": true}
    }
})

export const mutations = {
  changeColor(state, colorName) {
    state.colorScheme.base = {"bg-color-orange": true};
    state.colorScheme.light = {"bg-color-orange-light": true};
    state.colorScheme.dark = {"bg-color-orange-dark": true}
  }
}

What you did:

  • Install package and use default plugin from readme (Example with Nuxt.js)
  • Called mutation
  • Reloaded browser

What happened:

  • Localstorage restored after window reload, BUT, it has following states:
{
  "base": {
    "bg-color-primary": true,
    "bg-color-orange": true
  },
  "light": {
    "bg-color-primary-light": true,
    "bg-color-orange-light": true
  },
  "dark": {
    "bg-color-primary-dark": true,
    "bg-color-orange-dark": true
  }
}
// Following data was in localstorage before reload
{
  "base": {
    "bg-color-orange": true
  },
  "light": {
    "bg-color-orange-light": true
  },
  "dark": {
    "bg-color-orange-dark": true
  }
}

Problem description:

  • Store being restored, but it has merged default objects in store with restored ones.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions