hyb
2025-05-16 9cf793804cd7489ca4206e273da5a96b00820478
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* jshint esversion: 6 */
import Vue from "vue";
import Vuex from "vuex";
import state from "./state";
import mutations from "./mutations";
import actions from "@/store/actions";
 
Vue.use(Vuex);
 
export default new Vuex.Store({
    state,
    mutations,
    actions
});