vue语法如何实现子组件向父组件派发事件

2024年06月14日 建站教程

vue开发中,如何实现子组件向父组件派发事件?下面web建站小编给大家简单介绍一下具体实现代码!

具体代码如下:

<template>
  <div @click="sonHander">
    我是子组件中的数据
  </div>
</template>
 
<script>
import { defineComponent,setup } from "vue";
export default defineComponent({
  name: "NoCont",
  props:{
    mytitle:{
      type:Object
    }
  },
  setup(props,context){
  function sonHander(){
    context.emit("sonclick","子组件传递给父组件")
  }
  return {sonHander}
  }
});
</script>

本文链接:http://so.lmcjl.com/news/6524/

展开阅读全文
相关内容