Vue组件通信方式总结

本文总结了Vue组件之间的五种通信方式:1. 父组件通过props向子组件传递数据;2. 子组件使用自定义事件通知父组件;3. 兄弟组件通过共同祖辈组件传递信息;4. 利用provide/inject实现祖先到后代的深度通信;5. 使用事件总线或Vuex在任意组件间通信。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


一、父组件 => 子组件

属性 props

//child
props: {msg: String}

//parent
<HellowWorld msg="welcome to your vue.js App" />

特性 $attrs

//child, 并未在props中声明foo
<p>{{$attrs.foo}}</p>

//parent
<HellowWorld foo="foo" />

引用 refs

//parent
<HellowWorld foo="hw" />

mounted(){
  this.$refs.hw.xx = 'xx'
}

子元素$children

//parent
this.$children[0].xx = 'xxx'

二、子组件 => 父组件: 自定义事件

//child
this.$emit('add', good)

//parent
<Cart @add="cartAdd($event)" ></Cart>

三、兄弟组件: 通过共同祖辈组件

通过共同祖辈组件搭桥,$parent或#root

//brother1
this.$parent.$on('foo', handle)
//brother2
this.$parent.$emit('foo')

四、祖先和后代之间

由于嵌套数过多,传递props不切实际,vue提供了provide/inject API完成该任务

provide/inject: 能够实现祖先给后代传值

// ancestor
provide(){
  return { foo: 'foo' }
}

//descendant
inject: ['foo']

五、任意两个组件之间: 事件总线或vuex

事件总线: 创建一个Bus类负责事件派发,监听和回调管理

 //Bus,事件派发,监听和回调管理
Class Bus{
  constructor(){
    this.callbacks = {}
  }
  $on(name, fn){
    this.callbacks[name] = this.callbacks[name] || []
    this.callbacks[name].push(fn)
  }
  $emit(name, args){
    if(this.callbacks[name]){
      this.callbacks[name].forEach(cb => cb(args))
    }
  }
}

//main.js
Vue.prototype.$bus = new Bus()

//child1
this.$bus.$on('foo', handle)

//child2
this.$bus.$emit('foo')

实践中可以用Vue代理Bus,因为它已经实现了相应功能

vuex: 创建唯一的全局数据管理者store,通过它管理数据并通知组件状态变更

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值