1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-25 13:51:45 +03:00
guide/front/client/store/index.ts
2018-09-12 23:09:34 +03:00

19 lines
284 B
TypeScript

import Vuex from 'vuex'
import category from 'client/store/modules/category'
function createStore() {
// TODO loggins mutations in dev
return new Vuex.Store({
state: {},
actions: {},
mutations: {},
modules: {
category
}
})
}
export {
createStore
}