namespaced 不要漏了最后的d!!!

不要拼写错误,否则在dispatch时,会出现 unknown action type 错误。

 created () {
    this.$store.dispatch('products/getAllProducts')

unknown-action-type

product
export default {
    namespaced:true,
    state,
    getters,
    actions,
    mutations
}

例子来源:https://github.com/geektime-geekbang/geektime-vue-1/blob/master/vuex-demo3/src/store/modules/products.js 第34行

参考:https://vuex.vuejs.org/zh/guide/modules.html#module

Logo

前往低代码交流专区

更多推荐