码迷,mamicode.com
首页 > 其他好文 > 详细

vue 父组件调用子组件的函数

时间:2018-08-21 17:16:18      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:html   mep   javascrip   click   his   函数   nts   component   method   

子组件

<template>
  <div>
    child
  </div>
</template>
 
<script>
  export default {
    name: "child",
    props: "someprops",
    methods: {
      childFunction(e) {
        console.log(e,"ying")
      }
    }
  }
</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.childFunction("父组件调用");//过this.$refs.ref.method调用
      }
    }
  }
</script>

  

 

vue 父组件调用子组件的函数

标签:html   mep   javascrip   click   his   函数   nts   component   method   

原文地址:https://www.cnblogs.com/YAN-HUA/p/9512308.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!