vue中父组件添加自定义参数后,如何获取子组件$emit传递过来的参数

vue中子组件使用$emit传参,父组件接收参数的同时添加自定义参数,如何在父组件中获取子组件传过来的参数呢,在项目中会经常遇到这样的应用场景。

本文大纲:

vue中父组件添加自定义参数后,如何获取子组件$emit传递过来的参数_第1张图片

1、子组件使用emit传过来的参数只有一个时(父组件可以使用$event接收子组件传过来的参数)

子组件(child1):

this.$emit('fromChild1','我是子组件传过来的参数--child1')

父组件:

<child1 @fromChild1="getChild1($event,'我是父组件中的自定义参数--parent1')"></child1>
 
getChild1($event,parameter){
   
    console.log($event)

你可能感兴趣的:(vue,笔记,工作学习总结,子组件emit传参,父组件接收,父组件接收参数时添加自定义参数,父组件怎么获取自定义参数)