1,执行事件和调用
this.$store.state.count.count
2添加模块
3模块内执行过程
模块内部的数据:①内部state
,模块内部的state
是局部的,也就是模块私有的,比如是car.js
模块state
中的list
数据,我们要通过this.$store.state.car.list
获取;②内部getter
、mutation
和action
,仍然注册在全局命名空间内,这是为了多模块可以同时响应同一mutation
;this.$store.state.car.carGetter
的结结果是undefined
,而通过this.$store.state.carGetter
则可以拿到。