maxilo-vue
Version:
maxilo web framework.
15 lines (14 loc) • 396 B
JavaScript
import store from './store.js';
import Vuex from 'vuex';
export default function(){
this.register = function(app){
app.bind("store", function(app){
return new store()
})
}
this.boot = function(app){
app.vue.use(Vuex)
let config = app.make("config")
app.addHook('store', app.make("store").run(config.storeKey, config.debug))
}
}