vuex的基本使用

State

用于存储全局变量

state: {
	count: 0
}

获取state的方式:

this.$store.state.count

Mutations

只能通过Mutations变更state中的值,不可以直接操作state中的数据。Mutations会对state中的数据进行集中监听

mutations: {
	addCount(count) {
		state.count++
	}
}

组件触发mutations的方式:

this.$store.commit('addCount')

Actions

用于进行一些异步操作,在Mutations中无法异步修改数据,只能通过Actions进行异步操作

actions: {
	addAsync(state) {
		setTimeOut(() => {
			state.commit('addCount')	
		})
	}
}

使用方式:

this.$store.dispatch('addAsync'))

Getters

Getters用于对Store中的数据进行加工处理

getters: {
	showCount: state => {
		return '当前count的值为:' + state.count
	}
}

获取Getters的方式:

this.$store.getters.showCount
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值