-
Would be nice if vuex-persistedstate is compatible with server side rendering.
Could be done to store the state in cookies for server side. Tried out a little example:
```
import createPersiste…
-
Hello,
Whit all tests, state is save to local storage, but object never gets values, what is the issue here? Maybe there are some alternatives, examples to save state in local/cookie storage
-
Hello!
I use Vue Cli 3 with TypeScript
For this i create file:
import Vue from 'vue';
import Vuex from 'vuex';
import createPersistedState from 'vuex-persistedstate';
Vue.use(Vuex);
expor…
-
**Describe the bug**
I am on `beta.8` and when trying to move to `rc.2`, I am having issues running the `serve:electron` command. I use lerna with yarn workspaces
```
● ⍴/osapps/dotsync/packages/…
-
Greetings.
Quick question,
Are getters reactive?
If i use `this.$store.getters['entities/user/find']('id')` to retreive an user, it won't change the fields if the user data changes.
-
**Feature**
Is it possible to make something like multiple keys?
```
import { name, version } from "../../package";
const versionKey = `${name}@${version}`
const appKey = `${name}`
export …
-
Hello!
I found bug in Safari browser.
Max value length is 200 symbols.
If you have > 200 symbols in value, Safari trim it ...
In chrome all is ok
-
great example! really helped me. But I have a problem when I use persisted state. I want the entire state to persist over refresh. So I use the vuex-persistedState plugin - eg:
`Vue.use(Vuex)
expo…
-
**Do you want to request a *feature* or report a *bug*?**
Report a bug
**What is the current behavior?**
After upgrading my dependencies as follows, I am getting the following warning: …
-
I am having trouble with my store elements not continuing to be reactive after refreshing the page. My state to start is empty such that:
```javascript
const state = {
items: [],
};
```
I…