【Vue】兄弟组件传参和 Event Bus

Vue3 兄弟通信

1. 借助父组件传参

A 组件派发一个事件,修改 flag 的值,先传递给父组件,然后由父组件传递给 B 组件。

缺点:必须由 App.vue 处理中间逻辑。

A.vue

<template>
  <div class="A">
    <h1>A组件</h1>
    <button @click="emitB">派发一个事件</button>
  </div>
</template>

<script setup lang="ts">
const emit = defineEmits(['on-click'])
let flag = false
const emitB = () => {
  flag = !flag
  emit('on-click', flag)
}
</script>

<style scoped>
.A {
  width: 200px;
  height: 200px;
  color: #fff;
  background: blue;
}
</style>

App.vue

<template>
  <div>
    <A @on-click="getFlag"></A>
    <B :flag="Flag"></B>
  </div>
</template>

<script setup lang="ts">
import A from './components/A.vue';
import B from './components/B.vue';
import { ref } from 'vue'
let Flag = ref<boolean>(false)
const getFlag = (flag:boolean) => {
  Flag.value = flag
}
</script>

<style scoped>

</style>

B.vue

<template>
  <div class="B">
    <h1>B组件</h1>
    {{ flag }}

  </div>
</template>

<script setup lang="ts">
type Props = {
  flag: boolean
}
defineProps<Props>()

</script>

<style lang="scss" scoped>
.B{
  width: 200px;
  height: 200px;
  color: #fff;
  background: red;
}
</style>

在这里插入图片描述

2. Event Bus

Event Bus(事件总线)是一种在Vue中实现组件间通信的模式。它使用了Vue实例作为中央的事件中心,允许任何组件注册监听器并触发事件。通过事件总线,兄弟组件之间可以进行解耦合的通信。

原理是利用了 JavaScript 设计模式的发布-订阅(Publish-Subscribe Pattern),然后由事件调度中心(Event Loop)进行处理。

// 全局事件集合
list: {
	firstEvent: [fn1, fn2, ...],
	secondEvent: [fn1, fn2, ...],
}
// Bus.ts

type BusClass = {
  emit: (name: string) => void
  on: (name: string, callback: Function) => void
}

type PramsKey = string | number | symbol

type List = {
  [key: PramsKey]: Array<Function>
}

class Bus implements BusClass {
  list: List
  constructor() {
    this.list = {}
  }
  emit(name: string, ...args:Array<any>): void {
    let eventName: Array<Function> = this.list[name]
    eventName.forEach(fn =>{
      fn.apply(this, args)
    })
  }
  on(name: string, callback: Function): void {
    let fn:Array<Function> = this.list[name] || []
    fn.push(callback)
    this.list[name] = fn
  }
}
export default new Bus()
<!-- A.vue -->
<template>
  <div>
    <h1>A组件</h1>
    <button @click="emitB">派发一个事件</button>
    <hr>
  </div>
</template>

<script setup lang="ts">
import Bus from '../Bus'
let flag = false
const emitB = () =>{
  flag = !flag
  Bus.emit('on-click', flag)
}
</script>

<style scoped></style>
<!-- B.vue -->
<template>
  <div>
    <h1>B组件</h1>
    {{ Flag }}
    
  </div>
</template>

<script setup lang="ts">
import Bus from '../Bus'
import { ref } from 'vue'
let Flag = ref(false)
Bus.on('on-click', (flag:boolean)=> {
  Flag.value = flag
})

</script>

<style scoped></style>
<!-- App.vue -->
<template>
  <div>
    <A></A>
    <B></B>
  </div>
</template>

<script setup lang="ts">
import A from './components/A.vue'
import B from './components/B.vue'

</script>

<style scoped></style>

在这里插入图片描述

Vue2 兄弟通信

由于 Vue2 内部的通信机制,可以直接使用订阅发布模式 event bus 进行通信。

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

秀秀_heo

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值