vue3使用2--子传父--传递消息(setup,emit)

1、父组件

<template>
  <h2>APP父级组件</h2>
  <h3>msg:{{msg}}</h3>
  <!-- <button @click="msg += '==='">更新数据</button> -->
  <button @click="sendmsg">更新数据</button>
  <hr/>
  <child :msg="msg" @chenemit="chenemit"/>

</template>
<script lang="ts">
import { defineComponent, ref} from 'vue'
//引入子级组件child
import Child from './components/Child.vue'
export default defineComponent({
  name: 'App',
  //注册组件
  components:{
    Child
  },
  setup(){
    //定义一个Ref类型的数据
    const msg = ref('hello how are you')
    function sendmsg(){
      msg.value += '==='
    }
    function chenemit(txt:string){
      msg.value += txt
    }
    return{
      msg,
      sendmsg,
      chenemit
    }
  }
})
</script>
<style>
</style>

2、子组件

<template>
    <h2>Child子级组件</h2>
    <h3>msg:{{msg}}</h3>
    <button @click="emitxxx">分发事件</button>
</template>

<script lang="ts">
import { defineComponent} from 'vue'

export default defineComponent({
  name: 'Child',
  props:['msg'],

  setup(props,context){
    console.log(props.msg)
    console.log('setup执行了')
     
    //按钮的点击事件的回调函数
    function emitxxx(){
      context.emit('chenemit','pp')  //朝着定义的'chenemit'发送消息
    }
    return{
      emitxxx
      //setup中一般都是返回一个对象,对象中的属性和方法都可以在html模板中直接使用
    }
  }

})
</script>

<style>
</style>

3、结果

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值