// https://vuex.vuejs.org/zh-cn/intro.html// make sure to call Vue.use(Vuex) if using a module systemimportVuefrom'vue'importVuexfrom'vuex'Vue.use(Vuex)conststore=newVuex.Store({state:{count:0},mutations:{increment:(state)=>{constobj=stateobj.count+=1},decrement:(state)=>{constobj=stateobj.count-=1}}})exportdefaultstore