07-获取store的3种方式

2019-07-28  本文已影响0人  云桃桃
        <h3>{{$store.state.count}}</h3>
    import {mapState,mapMutations,mapGetters,mapActions} from 'vuex';
    
    export default {
        data(){
            return {
                msg:'hello Vuex store!!!'
            }
        },
        // 将store属性拿过来的三种方式,这样就可以直接访问count了 而不用$store.state.count
        computed:{
              ...mapState(['count'])
            /*count(){
              return this.$store.state.count
          }*/
        }
         /* computed:mapState({
            count:state=>state.count
        }),*/
}
上一篇 下一篇

猜你喜欢

热点阅读