import indexImportOrder from './components/indexImportOrder'components:{ ..._this.$emit 传值">
当前位置:   article > 正文

this.$emit()方法 Vue子组件向父组件传值_this.$emit 传值

this.$emit 传值

子组件使用this.$emit()向父组件传值

  • 第一步 在父组件中引入子组件

  1. <indexImportOrder ref="indexImportOrder" @closeMain="closeMain"/>
  2. import indexImportOrder from './components/indexImportOrder'
  3. components:{
  4. indexImportOrder,
  5. }
  • 第二步 子组件向父组件传值

1.  使用this.$emit("function",param);   //其中function为父组件定义函数,param为需要传递参数

  1. //新订单页面跳转
  2. viewBusiness(){
  3. let flag = false;
  4. this.$emit('closeMain',flag);
  5. },

2.  在父组件中子组件引用处添加函数@:function="function1"; //其中function为子组件中定义函数,

//function1为父组件定义函数--用于接收子组件传值并进行相应数据处理,可定义为同一名称

<indexImportOrder ref="indexImportOrder" v-on:closeMain="closeMain"/>

val及为子组件中flag,即接收的子组件参数

  1. closeMain(val){
  2. this.flag = val;
  3. },

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/150674
推荐阅读