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
599 B

11 months ago
import Vue from "vue";
import Vuex from "vuex";
import app from "./modules/app";
import dict from "./modules/dict";
import user from "./modules/user";
import tagsView from "./modules/tagsView";
import permission from "./modules/permission";
import settings from "./modules/settings";
import taicang from "./modules/taicang";
import xiaoqu from "./modules/xiaoqu";
11 months ago
import getters from "./getters";
11 months ago
11 months ago
Vue.use(Vuex);
11 months ago
const store = new Vuex.Store({
modules: {
app,
dict,
user,
tagsView,
permission,
11 months ago
settings,
taicang,
xiaoqu,
11 months ago
},
11 months ago
getters,
});
11 months ago
11 months ago
export default store;