I like Vue, but latest release (Vue 3) is working only with new vue-devtools
version and there is no Vuex at this moment.
And I must to create a temporary solution for this problem - vuex-overlay-tool
.
Vuex Overlay Tool plugin for Vue 3 provides monitoring of the state in the store with feature from vue-devtools
time-travel.
- overlay panel with Vuex store from your app
- mutations history
- state & getters overview
- time travel for mutations
Required
Install
$ npm install vuex-overlay-tools
# or
$ yarn add vuex-overlay-tools
Your application must have Vuex Store
import { createApp } from "vue";
import VuexOverlay from "vuex-overlay-tools"
import { store } from "./store" // path to vuex store
import App from "./App.vue"
createApp(App)
.use(store) // required
.use(VuexOverlay) // add plugin to your app
.mount('#app')