父组件调用子组件方法
父组件:
<ChindView ref="childRef"></ChindView >
调用方法:
this.$refs.childRef.show();
子组件调用父组件方法
父组件:
< ChindView v-on:onStyle="onStyle"></ChindView >
onStyle:function(){
}
子组件:
this.$emit("onStyle")
父组件调用子组件方法
父组件:
<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
网友评论