首页 > 其他 > 详细

Vue子组件调用父组件的方法并传值

时间:2021-04-04 01:07:11      阅读:26      评论:0      收藏:0      [点我收藏+]

父组件

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

子组件

<template>
  <div>
    <button @click="childMethod()">点击</button>
  </div>
</template>
<script>
  export default {
    methods: {
      childMethod() {
        this.$emit(‘fatherMethod‘,data);
      }
    }
  };
</script>

 

Vue子组件调用父组件的方法并传值

原文:https://www.cnblogs.com/xiaobaibubai/p/14614775.html

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