使用场景
当需要进行vuex进行数据状态管理的时候,会使用到mapGetters,mapState,还有自身的计算属性的时候,这个时候就会用到这个了!
1.首先需要安装
2.需要在.babelrc文件中新增以下
3.在vue组件中使用
import {mapState,mapGetters} from 'vuex'
export default {
methods:{
increment(){
this.$store.commit('increment');
}
},computed:{
...mapGetters([
'count'
]),...mapState({
counts(){
return this.$store.state.count;
}
})
}
}