vue父组件促发子组件中的方法

Posted baller

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue父组件促发子组件中的方法相关的知识,希望对你有一定的参考价值。

实现在父组件中促发子组件里面的方法

子组件:

<template>
  <div>
    我是子组件
  </div>
</template>
 
<script>
  export default {
    name: "child",
    methods: {
     parentHandleclick(e) {
        console.log(e)
      }
  }
</script>

父组件:

<template>
  <div>
    <button @click="clickParent">点击我促发子组件方法</button>
    <child ref="mychild"></child>
  </div>
</template>
 
<script>
  import Child from ‘./child‘;
  export default {
    name: "parent",
    components: {
      child: Child
    },
    methods: {
      clickParent() {
        this.$refs.mychild.parentHandleclick("父组件调用子组件方法");
      }
    }
  }
</script>

 

以上是关于vue父组件促发子组件中的方法的主要内容,如果未能解决你的问题,请参考以下文章

vue---vue2.x中父组件事件触发子组件事件

vue父组件调用子组件资源

vue子组件怎么调用父组件的方法

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

vue 父组件调用子组件的方法,更改子组件的数据

从路由加载子组件时从父组件触发子组件方法