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

父组件如何使用子组件中的方法

时间:2020-07-21 22:12:51      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:一个   child   order   ges   style   temp   onload   有一个   port   

子组件,有一个childMethod方法

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

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

<style>

</style>

父组件,调用childMethod方法

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

            };
        },
        components:{
            ‘mian-index‘:mainindex
        },
        onLoad(e) {

        },
        methods:{
            dataAction:function(){
                this.$refs.mainindex.childMethod();  //调用子组件方法
            }
        }
    }
</script>

<style scoped>
.content{
    width:100%;
    box-sizing: border-box;
}
</style>

转自 https://www.cnblogs.com/wangxiaoling/p/10250903.html

父组件如何使用子组件中的方法

标签:一个   child   order   ges   style   temp   onload   有一个   port   

原文地址:https://www.cnblogs.com/huihuihero/p/13356382.html

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