2025-06-19 07:54:16 +08:00
|
|
|
import Vue from "vue";
|
|
|
|
import Vuex from "vuex";
|
2025-06-19 12:44:04 +08:00
|
|
|
import count from "./modules/count";
|
2025-06-19 07:54:16 +08:00
|
|
|
Vue.use(Vuex);
|
|
|
|
|
|
|
|
const store = new Vuex.Store({
|
|
|
|
state: {},
|
|
|
|
mutations: {},
|
|
|
|
actions: {},
|
2025-06-19 12:44:04 +08:00
|
|
|
modules: { count },
|
2025-06-19 07:54:16 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
export default store;
|