devtools icon indicating copy to clipboard operation
devtools copied to clipboard

Vuex Tab not showing anymore

Open Morraycage opened this issue 3 years ago • 10 comments

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

Morraycage avatar Apr 28 '22 13:04 Morraycage

Me too.

devtools 6.1.3 vue 2.6.11 + vuex 3.6.2 + typescript 3.9.3

al123xiaaaa avatar May 04 '22 07:05 al123xiaaaa

Same problem Vue.js devtools 6.1.4 Vue 2.6.10

EgorFront avatar May 20 '22 11:05 EgorFront

Same here!

  • Vue.js devtools 6.1.4
  • Vue 2.6.12
  • Vuex 3.6.2

coccoinomane avatar May 28 '22 17:05 coccoinomane

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

goelrohan6 avatar Jun 08 '22 06:06 goelrohan6

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

greyhixson avatar Jun 17 '22 15:06 greyhixson

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.

ilexwg avatar Jun 23 '22 14:06 ilexwg

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

GuillaumeCauvet avatar Jun 24 '22 13:06 GuillaumeCauvet

It's store, not globalStore.

Akryum avatar Jun 24 '22 14:06 Akryum

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

Environment

  • Vuex: 3.6.2
  • Vue: 2.6.11

lloydaarn avatar Jul 19 '22 03:07 lloydaarn