You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
604 B
30 lines
604 B
1 year ago
|
import Vue from 'vue'
|
||
|
import Vuex from 'vuex'
|
||
|
import app from './modules/app'
|
||
|
import user from './modules/user'
|
||
|
import websocket from './modules/websocket'
|
||
|
import tagsView from './modules/tagsView'
|
||
|
import permission from './modules/permission'
|
||
|
import settings from './modules/settings'
|
||
|
import getters from './getters'
|
||
|
import config from "./modules/config";
|
||
|
import template from "./modules/template";
|
||
|
|
||
|
Vue.use(Vuex)
|
||
|
|
||
|
const store = new Vuex.Store({
|
||
|
modules: {
|
||
|
app,
|
||
|
user,
|
||
|
websocket,
|
||
|
tagsView,
|
||
|
permission,
|
||
|
settings,
|
||
|
config,
|
||
|
template,
|
||
|
},
|
||
|
getters
|
||
|
})
|
||
|
|
||
|
export default store
|