美文网首页Vue
Vue 组件通信——兄弟组件

Vue 组件通信——兄弟组件

作者: 华夏车前子 | 来源:发表于2019-06-14 16:24 被阅读0次

一、通过EventBus进行兄弟间组件通讯

1.通过 import 引入vue公共实例

1)在main.js文件中定义一个新的eventBus对象,其实他是一个全新的Vue实例:

export const eventBus = new Vue();

2)兄弟组件A.vue

import { eventBus } from '@/main'

  //监听事件
  created() {
    eventBus.$on('showMenus', (arg) => {
      console.log('123'+arg);
      alert(arg);
    })
  },

3)兄弟组件B.vue

import { eventBus } from '@/main'

//分发事件传值
 methods: {
  switchmenu:function(flag){
    eventBus.$emit('showMenus',flag); //触发事件
    }
  }

2.通过 window传递vue公共实例

1)在main.js文件中实例化一个Vue对象,并把它赋值于window.eventBus,这样eventBus就可以在任何组件中使用:

window.eventBus = new Vue();

2)兄弟组件A.vue

  //监听事件
export default {
  created() {
    eventBus.$on('showMenus', (arg) => {
      console.log('123'+arg);
      alert(arg);
    })
  }
}

3)兄弟组件B.vue

export default {
//分发事件传值
 methods: {
  switchmenu:function(flag){
    eventBus.$emit('showMenus',flag); //触发事件
    }
  }
}

二、通过父级组件进行兄弟间组件通讯

1.父组件:

<!-- ParentCard.vue -->
<template>
    <div class="card">

        <div class="card-body">
            <brother-card :messageSon="messageson" 
              @brotherSaid="messageDaughter($event)"></brother-card>
            <sister-card :messageDaughter="messagedaughter" 
              @sisterSaid="messageSon($event)"></sister-card>
        </div>
    </div>
</template>
 
<script>
    import BrotherCard from './BrotherCard';
    import SisterCard from './SisterCard'
 
    export default {
        name: 'ParentCard',
        data: () => ({
            theCardTitle: '父组件',
            messagedaughter:'', 
            messageson:''
        }),
        components: {
            BrotherCard,
            SisterCard
        },
        methods: {
            messageDaughter(message) {
                this.messagedaughter = message;
            },
            messageSon(message) {
                this.messageson = message;
            },
            stopFighting() {
                if (this.messagedaughter && this.messageson) {
                    return true
                }
                return false
            },
            momSaidChill() {
                this.messagedaughter = '',
                this.messageson = ''
            }
        }
    };
</script>

2.哥哥组件

<!-- BrotherCard.vue -->
<template>
    <div class="message">
        <div class="message-header">
            <h5 v-text="theCardTitle"></h5>
        </div>
        <div class="message-body">
            <p class="message-text">我是Brother组件</p>
            <button @click="messageSister" class="btn">给妹妹发消息</button>
 
            <div v-if="messageSon" class="alert" v-html="messageSon"></div>
        </div>
    </div>
</template>
 
<script>
    export default {
        name: 'BrotherCard',
        props: ['messageSon'],
        data: () => ({
            theCardTitle: '子组件1'
        }),
        methods: {
            messageSister() {
                this.$emit('brotherSaid', '妈妈说,该做作业了!(^_^)!!!')
            }
        }
    }
</script>

3.妹妹组件

<!-- SisterCard.vue -->
<template>
    <div class="message">
        <div class="message-header">
            <h5 v-text="theCardTitle"></h5>
        </div>
        <div class="message-body">
            <p class="message-text">我是Sister组件</p>
            <button @click="messageBrother" class="btn">给哥哥发消息</button>
            <div v-if="messageDaughter" class="alert" v-html="messageDaughter"></div>
        </div>
    </div>
</template>
 
<script>
    export default {
        name: 'SisterCard',
        props: ['messageDaughter'],
        data: () => ({
            theCardTitle: '子组件2'
        }),
        methods: {
            messageBrother() {
                this.$emit('sisterSaid', '妈妈说,该做作业了!(^_^)!!!')
            }
        }
    }
</script>

总结:


参考资料:Vue组件通讯:https://www.w3cplus.com/vue/component-communication.html

相关文章

  • vue 组件通信方式 ,父子、隔代、兄弟 三类通信,六种方法

    Vue 组件间通信只要指以下 3 类通信:父子组件通信、隔代组件通信、兄弟组件通信,下面分别介绍每种通信方式且会说...

  • Vue组件通信

    Vue组件通信 Vue组件关系可分为三大类: 父子组件 兄弟组件 跨级组件, 相应的组件之间的通信也分类三大类: ...

  • Vue如何实现组件通信?

    Vue组件通信的三种情况: 父子通信 爷孙通信 兄弟通信 父子通信:父组件使用Prop向子组件传递数据,子组件通过...

  • Vue事件总线(EventBus)

    vue组件非常常见的有父子组件通信,兄弟组件通信。而父子组件通信就很简单,父组件会通过props向下传数据给子组件...

  • vue2中eventbus遇到的坑

    前言 vue组件非常常见的有父子组件通信,兄弟组件通信。而父子组件通信就很简单,父组件会通过 props 向下传数...

  • Vue事件总线(EventBus)使用详细介绍

    前言 vue组件非常常见的有父子组件通信,兄弟组件通信。而父子组件通信就很简单,父组件会通过 props 向下传数...

  • Vue组件通信

    总体来说,Vue中组件之间的通信场景如下图: 可以将其分为父子组件通信、兄弟组件通信、跨级组件通信。 1. 自定义...

  • VUE - EventBus

    vue组件非常常见的有父子组件通信,兄弟组件通信。而父子组件通信就很简单,父组件会通过 props 向下传数据给子...

  • VUE03

    Vue组件 组件的创建 组件的指令以及事件绑定 父子组件创建 父子组件通信 兄弟组件的传值 动态组件

  • 老生常谈——vue组件之间通信

    老生常谈的组件之间通信 vue组件之间的通信细分为三种情况:兄弟组件之间的通信,父组件向子组件传递数据,子组件向父...

网友评论

    本文标题:Vue 组件通信——兄弟组件

    本文链接:https://www.haomeiwen.com/subject/mkjpfctx.html