部分代碼如下:importVuefrom'vue'importVuexfrom'vuex'import{CHANGE_MSG,INCREMENT_COUNTER}from'./mutation_types'Vue.use(Vuex)conststate={message:'HelloVue!',counter:0}constmutations={[CHANGE_MSG](state,msg){state.message=msg},[INCREMENT_COUNTER](state){state.counter++;}}
VUE里面:[CHANGE_MSG](state, msg)這個(gè)是什么語(yǔ)法?
桃花長(zhǎng)相依
2019-05-24 11:28:44