index.js 188 Bytes
Newer Older
程默 committed
1 2 3 4 5 6 7 8 9 10
import Vue from "vue";
import Vuex from "vuex";
import state from "./state";
import mutations from "./mutations"

Vue.use(Vuex);
export default new Vuex.Store({
    state,
    mutations
})