vuejs / devtools-v6

⚙️ Browser devtools extension for debugging Vue.js applications.
https://devtools-v6.vuejs.org/
MIT License
24.68k stars 4.14k forks source link

Vuex Tab not showing anymore #1850

Open Morraycage opened 2 years ago

Morraycage commented 2 years ago

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

al123xiaaaa commented 2 years ago

Me too.

devtools 6.1.3 vue 2.6.11 + vuex 3.6.2 + typescript 3.9.3

EgorFront commented 2 years ago

Same problem Vue.js devtools 6.1.4 Vue 2.6.10

coccoinomane commented 2 years ago

Same here!

goelrohan6 commented 2 years ago

same problem, it works in sidekick chrome version: 102.0.5005.61 (Official Build) (arm64) extension version

image
greyhixson commented 2 years ago

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

ilexwg commented 2 years ago

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.

GuillaumeCauvet commented 2 years ago

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 : image image image

Akryum commented 2 years ago

It's store, not globalStore.

lloydaarn commented 2 years ago

Same problem. both Vue and Vuex are installed via CDN.

Environment

isacax commented 2 months ago

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.