我們知道Vue中元件之間的通訊有很多方式,父子之間通訊比較簡單,當我們使用vuex時候,兄弟元件之間的通訊也很好得到解決
當我們專案較小時候,不使用vuex時候Vue中兄弟元件之間的通訊是怎樣進行的呢
參考連結:https://my.oschina.net/u/3229305/blog/1820279
//在生成vue例項前,給Vue的原型上新增一個bus屬性,這個屬性是vue的例項,
//之後建立的vue例項都具有bus這個屬性
//首先在main.js
Vue.prototype.bus = new Vue();
//元件hello
<template>
<div class="container">
<button @click="handler">hello word</button>
<word></word>
</div>
</template>
<script>
import word from './word.vue'
export default{
methods:{
handler () {
this.$bus.$emit('shareText', 'hello word')
}
}
}
</script>
// 元件world
<template>
<div class="con">
{{text}}
</div>
</template>
<script>
export default {
data () {
return {
text: 'hello'
}
},
mounted () {
var that = this
this.$bus.$on('shareText', function (text) {
that.text = text
})
}
}
</script>