一、通过computed的计算属性直接赋值
import store from '@/store/store'
export default{
name: 'count',
data(){
return{
msg:'Hello Vuex'
}
},
computed:{
num(){
return this.$store.state.num;
}
},
store
}
二、通过mapState的对象来赋值
首先引入mapState对象(注意:这里mapState对象一定要用{}括起来,不然会报错)
import { mapState } from 'vuex'
然后在computed属性中写入方法
//ES5的写法
computed:mapState({
num:function(state){
return state.num;
}
}),
//ES6的写法
computed:mapState({
num:state=>state.num
}),
三、通过mapState的数组来赋值(最常用的方法)
computed:mapState(['num']),