我在一個有命名空間的模組中有一個動作和一個全局變化(即不在模組中)。我希望能夠在動作中提交全域變更。
// 全域變化 export default { globalMutation (state, payload) { … } } // 命名空間模組中的動作 export default { namespaced: true, actions: { namespacedAction ({ commit, dispatch, state }, payload) { commit({ type: 'globalMutation' }) } } }
當調度命名空間動作時,Vuex 顯示:
[vuex] unknown local mutation type: globalMutation, global type: module/globalMutation
我可以透過傳遞一個選項給 commit
函數來呼叫這個全域變化嗎?
看起來我剛剛找到了一個使用
{ root: true }
參數的方法。如果模組有命名空間,請使用全域路徑取代: