22 lines
414 B
JavaScript
22 lines
414 B
JavaScript
import Vue from 'vue'
|
|
import Vuex from 'vuex'
|
|
import user from '@/store/modules/user'
|
|
import websocket from '@/store/modules/websocket'
|
|
import tools from '@/store/modules/tools'
|
|
import binding from '@/store/modules/binding'
|
|
import getters from './getters'
|
|
|
|
Vue.use(Vuex)
|
|
|
|
const store = new Vuex.Store({
|
|
modules: {
|
|
user,
|
|
websocket,
|
|
tools,
|
|
binding
|
|
},
|
|
getters
|
|
})
|
|
|
|
export default store
|