1.0.0 • Published 3 years ago

vuex-overlay-tool v1.0.0

Weekly downloads
-
License
MPL-2.0
Repository
github
Last release
3 years ago

Vuex Overlay Tool

Vuex state monitoring tool (for Vue 3) - temporary alternative instead of vue-devtools (vuex functionality)

Getting Started

Install

$ npm install vuex-overlay-tools

# or
$ yarn add vuex-overlay-tools

Usage

not working without Vuex store

import { createApp } from "vue";
import VuexOverlay from "vuex-overlay-tools"

import { store } from "./store"
import App from "./App.vue"

createApp(App)
  .use(store)
  .use(VuexOverlay) // add plugin to application
  .mount('#app')

Note

  • Working currently only with vuex modules

Preview

After adding the plugin to your application, you can open the overlay with your store

npm.io

Time travel is also supported

npm.io