vue--记录vuex的引用过程

vuex的引用过程

1、在项目里通过 npm install vuex --save安装完成之后–创建一个store文件–在store文件下创建index.js
2、index.js文件里分别引入vue跟vuex,然后挂载到vue.use(vuex)中

import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
const store = new Vuex.Store({
	state:{
		data_:0
	},
	mutations:{
		xxx(state){
			state.data_++
		}
	},//全局同步方法  this.$store.commit('xxx') 
	actions:{}, //异步方法  this.$store.dispatch("xxx")
	getters:{}, //vuex的计算属性 监听state的值变化
	modules:{}// 模块化注册
})
export default store   //暴露出去

3、在mian.js里引入挂载到vue的实列中

import Vue from 'vue'
import App from './App'
import store from './Store/index.js'
Vue.config.productionTip = false

// Vue.prototype.$store = store
App.mpType = 'app'

const app = new Vue({
    ...App,
	store
})
app.$mount()

4、做完上面3步就可以在任意组件中使用 使用方法是 this. s t o r e . c o m m i t ( ′ x x x ′ ) 显 示 的 方 法 t h i s . store.commit('xxx') 显示的方法 this. store.commit(xxx)this.store.state.data_

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值