vue兄弟組件如何傳值蛤袒?兄弟組件如何相互操作組件里面的函數(shù)熄云?
1、兄弟之間傳遞數(shù)據(jù)需要借助于事件車妙真,通過(guò)事件車的方式傳遞數(shù)據(jù)
2缴允、創(chuàng)建一個(gè)Vue的實(shí)例,讓各個(gè)兄弟共用同一個(gè)事件機(jī)制珍德。
3练般、傳遞數(shù)據(jù)方,通過(guò)一個(gè)事件觸發(fā)bus.$emit(方法名锈候,傳遞的數(shù)據(jù))薄料。
4、接收數(shù)據(jù)方泵琳,通過(guò)mounted(){}觸發(fā)bus.$on(方法名摄职,function(接收數(shù)據(jù)的參數(shù)){用該組件的數(shù)據(jù)接收傳遞過(guò)來(lái)的數(shù)據(jù)}),此時(shí)函數(shù)中的this已經(jīng)發(fā)生了改變获列,可以使用箭頭函數(shù)谷市。
實(shí)例如下:
我們可以創(chuàng)建一個(gè)單獨(dú)的js文件eventVue.js,內(nèi)容如下
import Vue from 'vue'
export default new Vue
假如父組件如下:
<template>
<components-a></components-a>
<components-b></components-b>
</template>
子組件a如下:
<template>
<div class="components-a">
<button @click="abtn">A按鈕</button>
</div>
</template>
<script>
import eventVue from '../../js/event.js'
export default {
name: 'app',
data () {
return {
‘msg':"我是組件A"
}
},
methods:{
abtn:function(){
eventVue .$emit("myFun",this.msg) //$emit這個(gè)方法會(huì)觸發(fā)一個(gè)事件
}
}
}
</script>
子組件b如下:
<template>
<div class="components-a">
<div>{{btext}}</div>
</div>
</template>
<script>
import eventVue from '../../js/event.js'
export default {
name: 'app',
data () {
return {
'btext':"我是B組件內(nèi)容"
}
},
created:function(){
this.bbtn();
},
methods:{
bbtn:function(){
eventVue.$on("myFun",(message)=>{ //這里最好用箭頭函數(shù),不然this指向有問(wèn)題
this.btext = message
})
}
}
}
</script>
這樣在子組件a里面點(diǎn)擊函數(shù)就可以改變兄弟組件b里面的值了蛛倦。
簡(jiǎn)單方法:
具體可以這樣:
在main.js注冊(cè)一個(gè)全局bus:
Vue.prototype.bus = new Vue()
然后在其他需要傳數(shù)據(jù)的地方可以考慮父子組件的通信方式:
接受數(shù)據(jù)的地方:
this.bus.on('click', data => {})
輸出數(shù)據(jù)的地方:
this.bus.$emit('click', 'some message')
?