欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

VUEx

程序员文章站 2024-02-28 15:36:22
...

VUEx

当执行点击事件时,dispatch触发action中的changeCity函数,再通过commit()执行mutations中的changeCity.因为没有异步操作,没有必要执行action,可以直接执行commit()

VUEx

VUEx


语法糖:

 computed:{
      ...mapState({
        currentCity:'city'
      })
    }

相当于:

computed:{
	  currentCity: function(){
	  	return this.$store.state.city
	  }
 }