码迷,mamicode.com
首页 > 移动开发 > 详细

uni-app 父组件引用子组件时怎么调用子组件的方法

时间:2019-06-15 11:32:26      阅读:373      评论:0      收藏:0      [点我收藏+]

标签:default   this   console   html   调用   组件   return   content   main   

1.写一个简单的子组件main/index.vue:

<template>
    <view></view>
</template>

<script>
    export default {
        data(){
            return {}
        },
        methods:{
            childMethod() {
                console.log(‘childMethod do...‘)
            }
        }
    }
</script>

<style>
</style>

在子组件中有一个childMethod方法

 

2.在父组件中引用这个子组件的childMethod方法:

<template>
    <view class="content">
        <mian-index ref="mainindex"></mian-index>
    </view>
</template>
<script>
    import mainindex from ‘@/pages/main/index/index.vue‘
    export default {
        data() {
            return {

            };
        },
        components:{
            ‘mian-index‘:mainindex
        },
        onLoad(e) {
            this.$refs.mainindex.childMethod();
        }
    }
</script>

<style>
</style>

 

 

说明:

首先,引入子组件文件,然后用ref给子组件一个id标识,然后通过this.$refs.mainindex.childMethod();调用子组件方法

 

 

参考链接:https://www.cnblogs.com/wangxiaoling/p/10250903.html

 

uni-app 父组件引用子组件时怎么调用子组件的方法

标签:default   this   console   html   调用   组件   return   content   main   

原文地址:https://www.cnblogs.com/cap-rq/p/11026881.html

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