0.0.5 • Published 2 years ago

class-stores-plugin v0.0.5

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

Vue Class Stores - Dev Tools Plugin

Usage:

npm install class-stores-plugin
yarn add class-stores-plugin
import Vue               from 'vue';
import ClassStoresPlugin from 'class-stores-plugin';

Vue.use(ClassStoresPlugin);

const app = new Vue({}).$mount(document.getElementById('app'));

I had some scenarios where the above doesn't work, if this is the case, you can do it this way:

import Vue             from 'vue';
import {setupDevtools} from 'class-stores-plugin';

const app = new Vue({}).$mount(document.getElementById('app'));

setupDevtools(app);

Viewing Class Stores

In vue devtools, click the dropdown and select "Class Stores"

vue-dev-tools-access.png

Select your class store, and you can now see your state, methods & getters :) img.png

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago