devtools
devtools copied to clipboard
Vuex Tab not showing anymore
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
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!
- Vue.js devtools 6.1.4
- Vue 2.6.12
- Vuex 3.6.2
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
- Vuex: 3.0.1
- Vue: 2.6.10
- Browser: Latest version of Chrome
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
- Vuex: 3.6.2
- Vue: 2.6.11