first commit

This commit is contained in:
2024-08-01 17:02:23 +07:00
commit 1eb8be275b
6 changed files with 1616 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
// State
// data ...
// Mutations
//
//
// Actions
import ticket from "./modules/ticket.js";
import system from "../../../apps/modules/system/system.js";
export const store = new Vuex.Store({
modules: {
ticket:ticket,
system:system
},
state: {
},
mutations: {
},
actions: {
}
});