29 lines
573 B
JavaScript
29 lines
573 B
JavaScript
// State
|
|
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import province from "./modules/province.js";
|
|
import city from "./modules/city.js";
|
|
import district from "./modules/district.js";
|
|
import kelurahan from "./modules/kelurahan.js";
|
|
import system from "../../apps/modules/system/system.js";
|
|
export const store = new Vuex.Store({
|
|
modules: {
|
|
province: province,
|
|
city: city,
|
|
district:district,
|
|
kelurahan:kelurahan,
|
|
system:system
|
|
},
|
|
state: {
|
|
|
|
},
|
|
mutations: {
|
|
|
|
},
|
|
actions: {
|
|
|
|
}
|
|
}); |