Open
Description
Version
5.3.4
not sure about the version_
Reproduction link
Steps to reproduce
- Create basic app
- Create basic store
- Add store thorught
new Vue({store: new Vuex.Store(storeObj)})
- Add ANOTHER instance of vuex store
new Vue({
anotherStore: new Vuex.Store(anotherStoreObj),
store: new Vuex.Store(storeObj)
})
What is expected?
To show every store object or at least one that is defined under $store variable.
What is actually happening?
Now, in devtools you will only see state from vuex store that was init first.