uniapp父组调用子组件中的方法

父组件:

子组件:

一、父组件调用子组件的方法

1.在父组件中引入子组件



2.调用子组件的数据和方法

var message = this.$refs.pop.isPopDate = 7    //把子组件中的isPopDate的值改为7
this.$refs.pop.function()        //调用子组件中的function方法

 

你可能感兴趣的:(uniapp)