6.0.0-beta.2
"vuex": "^4.0.0-beta.4"
"vue": "^3.0.0-rc.10",
Chrome 85.0.4183.83 / Windows 10
Open Vue Devtools in Chrome browser
To see the Vuex tab in the Vue Devtools tab
Vuex is not showing at all
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 馃槃
Most helpful comment
Is there a ETA for vuex 4 support?