mirror of
https://github.com/aelve/guide.git
synced 2024-12-25 13:51:45 +03:00
19 lines
284 B
TypeScript
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
|
|
}
|