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