Vue-devtools: Vuex tab not showing in Chrome w/ version 6.0.0-beta.2

Created on 3 Sep 2020  路  11Comments  路  Source: vuejs/vue-devtools

Version

6.0.0-beta.2

"vuex": "^4.0.0-beta.4"
"vue": "^3.0.0-rc.10",

Browser and OS info

Chrome 85.0.4183.83 / Windows 10

Steps to reproduce

Open Vue Devtools in Chrome browser

What is expected?

To see the Vuex tab in the Vue Devtools tab

What is actually happening?

Vuex is not showing at all

Most helpful comment

Is there a ETA for vuex 4 support?

All 11 comments

Vuex integration is WIP and not available in the beta channel yet.

your issue is so interesting.
but i don't know solutions to solve it.
sorry.

Is there a ETA for vuex 4 support?

Is there a way to debug Vuex that we can use until Dev tools support is ready?

@Adrek this API createLogger can use to debug Vuex

you can find the example from Vuex repo

Hey @izayl I've tried createLogger and it doesn't log anything for me:

import { createStore, createLogger } from 'vuex';
import products from './modules/products';
import navigator from './modules/navigator';
import configurator from './modules/configurator';

export default createStore({
modules: {
products,
navigator,
configurator,
plugins: [createLogger()],
},
});

@infinity899

import { createStore, createLogger } from 'vuex';
import products from './modules/products';
import navigator from './modules/navigator';
import configurator from './modules/configurator';

export default createStore({
    modules: {
        products,
        navigator,
        configurator,
-       plugins: [createLogger()],
    },
+   plugins: [createLogger()],
});

@izayl lol I was blind, thanks for pointing it out. Btw how did you comment it like this? For code I've found only which lets me only small chunks thanks!

You can use triple backticks (`) to format code listings: https://docs.github.com/en/free-pro-team@latest/github/writing-on-github/basic-writing-and-formatting-syntax#quoting-code

You can use triple backticks (`) to format code listings: https://docs.github.com/en/free-pro-team@latest/github/writing-on-github/basic-writing-and-formatting-syntax#quoting-code

thank you
@maurer2 

Any updates on timings or higher level plans for this?

I certainly understand and appreciate the desire to get things right on the major version bump, but at the same time this seems like a fairly high priority feature.

Lastly, I would be happy to help tackle some of the work if pointed in the right direction, I'm sure others in the community would help out as well if it's just a matter of resourcing.

Thanks 馃槃

Was this page helpful?
0 / 5 - 0 ratings