Flatten nested repos
This commit is contained in:
26
test/vuex/one-process-ref-out-status/store.js
Normal file
26
test/vuex/one-process-ref-out-status/store.js
Normal file
@@ -0,0 +1,26 @@
|
||||
// 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: {
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user