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