首页 > 其他 > 详细

vue中子组件调用父组件的方法

时间:2019-05-09 13:46:35      阅读:130      评论:0      收藏:0      [点我收藏+]

原文地址


Vue中子组件调用父组件的方法,这里有三种方法提供参考

第一种方法是直接在子组件中通过this.$parent.event来调用父组件的方法

父组件

技术分享图片
<template>
  <div>
    <child></child>
  </div>
</template>
<script>
  import child from ‘~/components/dam/child‘;
  export default {
    components: {
      child
    },
    methods: {
      fatherMethod() {
        console.log(‘测试‘);
      }
    }
  };
</script>
技术分享图片

子组件

技术分享图片
<template>
  <div>
    <button @click="childMethod()">点击</button>
  </div>
</template>
<script>
  export default {
    methods: {
      childMethod() {
        this.$parent.fatherMethod();
      }
    }
  };
</script>
技术分享图片

 

第二种方法是在子组件里用$emit向父组件触发一个事件,父组件监听这个事件就行了。

父组件

技术分享图片
<template>
  <div>
    <child @fatherMethod="fatherMethod"></child>
  </div>
</template>
<script>
  import child from ‘~/components/dam/child‘;
  export default {
    components: {
      child
    },
    methods: {
      fatherMethod() {
        console.log(‘测试‘);
      }
    }
  };
</script>
技术分享图片

子组件

技术分享图片
<template>
  <div>
    <button @click="childMethod()">点击</button>
  </div>
</template>
<script>
  export default {
    methods: {
      childMethod() {
        this.$emit(‘fatherMethod‘);
      }
    }
  };
</script>
技术分享图片

 

第三种是父组件把方法传入子组件中,在子组件里直接调用这个方法

父组件

技术分享图片
<template>
  <div>
    <child :fatherMethod="fatherMethod"></child>
  </div>
</template>
<script>
  import child from ‘~/components/dam/child‘;
  export default {
    components: {
      child
    },
    methods: {
      fatherMethod() {
        console.log(‘测试‘);
      }
    }
  };
</script>
技术分享图片

子组件

技术分享图片
<template>
  <div>
    <button @click="childMethod()">点击</button>
  </div>
</template>
<script>
  export default {
    props: {
      fatherMethod: {
        type: Function,
        default: null
      }
    },
    methods: {
      childMethod() {
        if (this.fatherMethod) {
          this.fatherMethod();
        }
      }
    }
  };
</script>
技术分享图片

 区别:

  1.   this.$parent.event可以调用父组件身上的方法,无需绑定在子组件身上。
  2.   $emit可以调用父组件在子组件身上自定义的事件,需要用@前缀
  3.   props可以调用父组件绑定在子组件身上的事件,需要:前缀

三种都可以实现子组件调用父组件的方法,但是效率有所不同,根据实际需求选择合适的方法,嗯,就酱~


返回目录

vue中子组件调用父组件的方法

原文:https://www.cnblogs.com/gitByLegend/p/10837936.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!