vue3-父子通信

 

 

 

 一个简单的vue3子组件调用父组件方法的demo

<template>  
  <div>  
    <h2>Parent Component父组件</h2>  
    <ChildComponent @notify-parent="handleParentMethod" />  
  </div>  
</template>  
  
<script>  
import { ref } from 'vue';  
import ChildComponent from './Child.vue';  
  
export default {  
  name: 'Parent',  
  components: {  
    ChildComponent  
  },  
  setup() {  
    const handleParentMethod = () => {  
      console.log('Parent method called from child');  
      // 这里可以执行父组件的其他逻辑  
    };  
  
    return {  
      handleParentMethod  
    };  
  }  
};  
</script>
<template>  
  <div>  
    <h3>Child Component子组件</h3>  
    <button @click="notifyParent">Notify Parent</button>  
  </div>  
</template>  
  
<script>  
import { defineComponent, emit } from 'vue';  
  
export default defineComponent({  
  name: 'Child',  
  setup(_, { emit }) {  
    const notifyParent = () => {  
      emit('notify-parent'); // 触发自定义事件  
    };  
  
    return {  
      notifyParent  
    };  
  }  
});  
</script>

 在这个例子中,子组件(Child.vue)有一个按钮,当点击这个按钮时,它会触发一个名为 notify-parent 的自定义事件。父组件(Parent.vue)监听了这个事件,并在事件触发时调用 handleParentMethod 方法。

 

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值