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

5年以前  |  阅读数:504 次  |  编程语言:JavaScript 

父组件

<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就可以被调用了。

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8