27 lines
578 B
JavaScript
27 lines
578 B
JavaScript
// State
|
|
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import sotemplate from "./modules/sotemplate.js";
|
|
import sotemplatetest from "./modules/sotemplatetest.js";
|
|
import sotemplatedetail from "./modules/sotemplatedetail.js";
|
|
import system from "../../../apps/modules/system/system.js";
|
|
export const store = new Vuex.Store({
|
|
modules: {
|
|
sotemplate: sotemplate,
|
|
sotemplatetest: sotemplatetest,
|
|
sotemplatedetail: sotemplatedetail,
|
|
system:system
|
|
},
|
|
state: {
|
|
|
|
},
|
|
mutations: {
|
|
|
|
},
|
|
actions: {
|
|
|
|
}
|
|
}); |