1.1.3 • Published 3 years ago
vuex4-devtools-helper v1.1.3
vuex4-devtools-helper
Introduction
We missed Vuex Inspector
when we develop an web app with Vue 3 and Vuex 4. So this package can help us to use Vuex Inspector
of Vue.js devtools
Installation
Yarn
yarn add -D vuex4-devtools-helper
NPM
npm install --save-dev vuex4-devtools-helper
Usage
import { createApp } from 'vue';
import { addDevtools } from 'vuex4-devtools-helper';
import store from <PATH-TO-YOUR-STORE>;
const app = createApp(App);
\\ ... Your implementation
app.use(store);
\\ ... Your implementation
addDevtools(app, store);