05——vue企业级电商系统(vuex)

https://vuex.vuejs.org/zh/

import {mapState} from 'vuex'

  computed:{
    //可解决变量延迟问题
    /**username(){
      return this.$store.state.username;
    },
    cartCount(){
      return this.$store.state.cartCount;
    },*/
    ...mapState(['username','cartCount'])  //与上面的等价
  },
原创文章 181 获赞 19 访问量 3万+

猜你喜欢

转载自blog.csdn.net/Pandora_417/article/details/105561126