Open Morraycage opened 2 years ago
Me too.
devtools 6.1.3 vue 2.6.11 + vuex 3.6.2 + typescript 3.9.3
Same problem Vue.js devtools 6.1.4 Vue 2.6.10
Same here!
same problem, it works in sidekick
chrome version: 102.0.5005.61 (Official Build) (arm64)
extension version
I have the same problem with the most recent version of Vue.js devtools, but I downgraded to the official legacy version and everything works great!
Environment
You should import store into your main.js file and register it to Vue instance. For instance below: store file is src/store/index.js entry file is main.js
main.js
import store from "@/store";
new Vue({
// ...
store,
// ...
});
Then Vue.js devtools can find store and show the Vuex tab.
You should import store into your main.js file and register it to Vue instance. For instance below: store file is src/store/index.js entry file is main.js
main.js
import store from "@/store"; new Vue({ // ... store, // ... });
Then Vue.js devtools can find store and show the Vuex tab.
Not working for me :
It's store
, not globalStore
.
Same problem. both Vue and Vuex are installed via CDN.
Environment
Just stating i have the same issue. The Vuex tab used to be there, but its no longer there, which makes it quite annoying since i can't see or edit the store on the fly.
Version
6.1.4
Browser and OS info
Chrome/100.0.4896.127
Steps to reproduce
Open Vue devTools
What is expected?
Showing Vuex Tab
What is actually happening?
Not showing Vuex Tab