pub1c-web.frontend/src/store/index.js

14 lines
302 B
JavaScript
Raw Normal View History

2021-05-26 16:26:52 +00:00
import { createStore } from "vuex";
2021-05-30 15:17:06 +00:00
import infobases from "@/store/modules/infobases.js";
2021-06-04 20:01:26 +00:00
import apache_restart from "@/store/modules/apache_restart.js";
2021-06-08 11:08:45 +00:00
import config from "@/store/modules/config.js";
2021-05-30 15:17:06 +00:00
2021-05-26 16:26:52 +00:00
export default createStore({
2021-05-30 15:17:06 +00:00
modules: {
infobases,
2021-06-04 20:01:26 +00:00
apache_restart,
2021-06-08 11:08:45 +00:00
config,
2021-05-30 15:17:06 +00:00
},
2021-05-26 16:26:52 +00:00
});