add modules folder based on s_menu

This commit is contained in:
2026-06-30 10:16:11 +07:00
parent 315b657ee3
commit a1aab09ac9
625 changed files with 192283 additions and 794 deletions

View File

@@ -0,0 +1,26 @@
import system from "../../../apps/modules/system/system.js";
import np_data from "./modules/np_data.js";
import np_form from "./modules/np_form.js";
import p_data from "./modules/p_data.js";
import p_form from "./modules/p_form.js";
export const store = new Vuex.Store({
modules: {
system: system,
p_data: p_data,
p_form: p_form,
np_data: np_data,
np_form: np_form
},
state: {
type_transfer: 'P'
},
mutations: {
update_type_transfer(state, data) {
state.type_transfer = data
}
},
actions: {
},
});