Vue--父组件如何触发子组件中的方法

Hey don't tell me 你的歪道理 我的人生早就像在蹦极

父组件如何触发子组件中的方法通过ref

 

子组件:
<template>
  <div>
    child
  </div>
</template>
 
<script>
  export default {
    name: "child",
    methods: {
      abcClick() {
       
      }
    }
  }
</script>

 

父组件
<template>
  <div>
    <button @click="clickParent">点击</button>
    <child ref="mychild"></child>
  </div>
</template>
 
<script>
  import Child from './child';
  export default {
    name: "parent",
    components: {
         Child
    },
    methods: {
      clickParent() {
        this.$refs.mychild.abcClick();
      }
    }
  }
</script>

  

  

 

posted @ 2019-11-01 14:35  写手在作画  阅读(479)  评论(0编辑  收藏  举报