// 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: { } });