扣丁书屋

Vue子组件调用父组件的方法

3年以前  |  阅读数:41 次  |    

通过this.$parent调用父组件中的方法。

父组件

<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>

这样,父组件中的fatherMethod就可以被调用了。

相关文章: