美文网首页Uni-App
Uni-App 父类和组件互相调用方法和传参

Uni-App 父类和组件互相调用方法和传参

作者: sunny_ling | 来源:发表于2020-10-30 09:59 被阅读0次

    父组件调用子组件方法

    父组件:
    <ChindView ref="childRef"></ChindView >
    调用方法:
    this.$refs.childRef.show();
    

    子组件调用父组件方法

    父组件:
    < ChindView v-on:onStyle="onStyle"></ChindView >
    onStyle:function(){
    }
    
    子组件:
    this.$emit("onStyle")
    

    相关文章

      网友评论

        本文标题:Uni-App 父类和组件互相调用方法和传参

        本文链接:https://www.haomeiwen.com/subject/gtirvktx.html