父子组件中定义的方法相互调用

父子组件中定义的方法相互调用

1、子组件调用父组件中定义的方法

子组件代码

<template>
	<div>
		<button @click="clickCloseHandle()">点我关闭子组件弹窗</button>
	<div>
</template>
export default {
  methods: {
    clickCloseHandle() {
     this.$emit('closeHandle')
    },
    testHandle(){
   	 alert(2)
    }
  }
}

例子中使用 this.$emit(‘XXX’) 父组件中使用@XXX=“closeHandle()”@后面的键值与子组件emit定义的值一致,值为父组件中定义的方法,即可完成调用

父组件调用子组件中定义的方法

父组件代码

<template>
	<div>
		<child-component ref="childComponent" @closeHandle="closeHandle()"></child-component>
		<div @click="ceshiHandle()"></div>
	<div>
</template>
export default {
  methods: {
    closeHandle() {
     alert(1)
    },
    ceshiHandle(){
     this.$refs.childComponent.testHandle()
    }
  }
}

例子中使用 this.$ r e f s . c h i l d C o m p o n e n t . t e s t H a n d l e ( ) 父 组 件 中 使 用 r e f = " c h i l d C o m p o n e n t " 定 义 子 组 件 元 素 , 使 用 t h i s . refs.childComponent.testHandle() 父组件中使用ref="childComponent" 定义子组件元素,使用this. refs.childComponent.testHandle()使ref="childComponent"使this.refs.childComponent.testHandle() 来调用子组件中定义的函数testHandle()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值