stateli-vue
v1.0.12
Published
Vue plugin to enable Stateli to work with Vue dev tools
Downloads
9
Maintainers
Readme
Stateli Vue
A Vue plugin to enable Stateli to work with Vue DevTools.
Installation
Install stateli-vue with npm.
$ npm install stateli stateli-vue --save
Usage
import Vue from 'vue';
import { StateliStore } from 'stateli';
import StateliVue from 'stateli-vue';
import App from './App.vue'; // <-- your main app component
Vue.use(StateliVuePlugin);
const store = new StateliStore({
actions: [],
mutations: [],
getters: [],
state: {},
});
const vueInstance = new Vue({
store,
render: h => h(App),
});