Files
FE_CPONE/test/vuex/one-admin-mcu/store.js
2026-04-27 10:13:31 +07:00

25 lines
412 B
JavaScript

// State
// data ...
// Mutations
//
//
// Actions
import admin from "./modules/admin.js";
import order from "./modules/order.js";
import system from "../../../apps/modules/system/system.js";
export const store = new Vuex.Store({
modules: {
admin:admin,
order:order,
system:system
},
state: {
},
mutations: {
},
actions: {
}
});