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

本文展示了Vue.js中父子组件之间的数据传递和事件处理。父组件通过`props`将数据`msg`传递给子组件,并提供了一个`sendmsg`方法来更新数据。子组件接收到`msg`并显示,同时监听`chenemit`事件,当用户触发按钮点击时,子组件调用`emitxxx`方法分发`chenemit`事件,向父组件传递字符串`pp`。
摘要由CSDN通过智能技术生成

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、结果

Vue 3 中,你可以使用 `setup` 语法糖来实现子组件向父组件传递数据和更新父组件的 `v-model`。下面是一个示例: ```vue <template> <div> <!-- 子组件 --> <ChildComponent v-model="childValue" /> <p>子组件的值: {{ childValue }}</p> </div> </template> <script> import { ref } from 'vue'; import ChildComponent from './ChildComponent.vue'; export default { components: { ChildComponent }, setup() { const childValue = ref(''); return { childValue }; } }; </script> ``` 在这个例子中,`ChildComponent` 是子组件,它接收一个 `v-model` 绑定的值 `childValue`。在父组件中,我们使用 `setup` 函数来定义一个名为 `childValue` 的响应式变量,并将其传递给子组件。子组件可以通过修改 `childValue` 来更新父组件的值。 在子组件中,你可以通过 `props` 接收 `childValue` 并将其绑定到一个内部变量上。然后,你可以在子组件中使用 `$emit` 来向父组件发送更新事件。 ```vue <template> <div> <input type="text" :value="value" @input="updateValue($event.target.value)" /> </div> </template> <script> export default { props: ['value'], methods: { updateValue(newValue) { this.$emit('update:value', newValue); } } }; </script> ``` 在子组件中,我们将 `value` 属性绑定到输入框的值,并通过 `@input` 事件监听输入框的变化。当输入框的值发生变化时,我们调用 `updateValue` 方法,并使用 `$emit` 发送一个名为 `update:value` 的事件,将新的值传递给父组件。 这样,在父组件中,我们就可以通过监听子组件发出的 `update:value` 事件来更新父组件的值,并且这个更新会通过 `v-model` 双向绑定到子组件上。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值