vue父传子、子传父、兄弟组件传参

父传子

父组件

<fatherTheSon class="fatherTheSon_box" :lists="'今晚打老虎'"></fatherTheSon>
import fatherTheSon from '@/page/father_the_son'
export default {
        components: {
          fatherTheSon
        }
}

子组件

<p>{{lists}}</p>
export default {
    props:{
      	lists:{
        	// type:[String, Number,Array,Boolean,Object,Function,Symbol],//多个可能的类型
        	type:null,//null//允许任何类型
      	}
    },
}

子传父

1.先在父组件引入子组件

import sonTheFather from '@/page/son_the_father'

2.在子组件中使用$emit发射事件

this.$emit('closesd',1,'22',{out:this.out,as:this.as})

3.子父组件中接收

<sonTheFather class="sonTheFather_box" @closesd="closesdk"></sonTheFather>
methods: {
  closesdk(one,two,three){
    this.out=three.out;
    this.as=three.as;
  }
},

兄弟传参

1.创建一个bus.js文件

import Vue from 'vue'
export default new Vue;

2.在要通信的组件引入

import Bus from '@/js/bus.js'

3.在发送数据的页面

funs(){
    Bus.$emit('msg', '我要传给兄弟组件们')
}

4.在接收数据页面

mounted() {
   Bus.$on('msg', (e) => {
   		console.log(`传过来的数据是:${e}`)
   })
},
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值