17 lines
315 B
JavaScript
17 lines
315 B
JavaScript
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import location from "./modules/location.js";
|
|
import system from "../../../apps/modules/system/system.js";
|
|
export const store = new Vuex.Store({
|
|
modules: {
|
|
system: system,
|
|
location: location,
|
|
},
|
|
state: {},
|
|
mutations: {},
|
|
actions: {},
|
|
});
|