父向子传值:v-bind属性绑定
子向父传值:v-on事件绑定
兄弟组件之间共享数据:EventBus
(适合小范围内数据共享)
vuex是实现组件全局状态(数据)管理的一种机制,可以方便的实现组件之间数据的共享
一般情况下,只有组件之间共享的数据,才有必要存储到vuex中,对于组件中的私有数据,依旧存在自身的data中即可
1.安装vuex依赖包
npm install vuex --save
2.导入vuex包
import Vuex from 'vuex'
Vue.use(Vuex)
3.创建store对象
const store=new Vuex.Store({
//state中存放的就是全局共享的数据
state:{
count:0
}
})
4.将store对象挂载到vue实例中
new Vue({
el:'#app',
render:h=>{app},
router,
//将创建的共享数据对象,挂载到vue实例中
//所有的组件,就可以直接从store中获取全局的数据了
store
})
3.vuex的核心概念
3.1核心概念概述
3.2State
State提供唯一的公共数据源,所有公告向的数据要统一放到Store的State中进行存储
组件中访问State中数据的第一种方式:
this.$store.state.全局数据名称
组件中访问State中数据的第二种方式:
//1.从vuex中按需导入mapState函数
import {mapState} from 'vuex'
//2.通过刚才导入的mapState函数,将当前组件需要的全局数据,映射为当前组件的computed计算属性
computed:{
...mapState(['count'])
}
3.3Mutation
用于变更Store中的数据
const store=new Vuex.Store({
state:{
count:0
},
mutations:{
//step为传递的参数
add(state,step){
//变更状态
state.count+=step
//不能再mutations中写异步操作
}
}
})
//触发mutations
methods:{
handle1(){
//触发mutations的第一种方式
//commit的作用就是调用某个mutations
this.$store.commit('add',2)
}
}
触发mutations的第二种方式
//1.从vuex中按需导入mapMutations函数
import {mapMutations} from 'vuex'
//2.通过刚才导入的mapMutations函数,将需要的mutations函数,映射为当前组件的methods方法
methods:{
...mapMutations(['add','addN'])
}
3.4 Action
用于处理异步任务
如果通过异步操做变更数据,必须通过Action,而不能使用Mutation,但是在Action中还是要通过Mutation的方式间接变更数据
//定义action
const store=new Vuex.Store({
mutations:{
add(state){
state.count++
}
},
actions:{
addAsync(context){
setTimeout(()=>{
context.commit('add')
},1000)
}
}
})
//触发action
methods:{
handle(){
//触发actions的第一种方式
this.$store.dispatch('addAsync')
}
}
触发action的第二种方式:
//1.从vuex中按需导入mapActions函数
import {mapActions} from 'vuex'
//2.通过刚才导入的mapActions函数,将需要的actions函数,映射为当前组件的methods方法
methods:{
...mapActions(['addAsync','addNAsync'])
}
3.5Getter
用于对Store中的数据进行加工处理形成新的数据
//定义Getter
const store=new Vuex.Store({
state:{
count:0
},
getters:{
showNum:state=>{
return '当前最新的数量是'+state.count
}
}
})
使用getters的两种方式
第一种方式:
this.$store.getters.名称
第二种方式:
import {mapGetters} from 'vuex'
computed:{
...mapGetters(['showNum'])
}