vuex modules 命名空间 namespaced 属性
namespaced 不要漏了最后的d!!!不要拼写错误,否则在dispatch时,会出现 unknown action type 错误。created () {this.$store.dispatch('products/getAllProducts')productexport default {namespaced:true,state,...
·
namespaced 不要漏了最后的d!!!
不要拼写错误,否则在dispatch时,会出现 unknown action type 错误。
created () {
this.$store.dispatch('products/getAllProducts')
product
export default {
namespaced:true,
state,
getters,
actions,
mutations
}
更多推荐
已为社区贡献2条内容
所有评论(0)