You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
492 B
JavaScript
24 lines
492 B
JavaScript
4 years ago
|
import Vue from "vue";
|
||
|
import Vuex from "vuex";
|
||
|
import * as actions from "./actions";
|
||
|
import * as getters from "./getters";
|
||
|
import app from "./modules/app";
|
||
|
import admin from "./modules/admin";
|
||
|
|
||
|
if (process.env.NODE_ENV === "development") {
|
||
|
Vue.use(Vuex);
|
||
|
}
|
||
|
|
||
|
const debug = process.env.NODE_ENV !== "production";
|
||
|
|
||
|
export default new Vuex.Store({
|
||
|
actions,
|
||
|
getters,
|
||
|
modules: {
|
||
|
app,
|
||
|
admin
|
||
|
},
|
||
|
strict: debug
|
||
|
// plugins: debug ? [createLogger()] : []
|
||
|
});
|