vue中,父组件主动获取子组件中的数据和方法及子组件主动获取父组件中的数据和方法
1.父组件主动获取子组件中的数据和方法
在父组件里面通过:
this.$refs.childMethod.属性
this.$refs.childMethod.方法
在父组件中:(调用子组件的时候,定义一个ref)
<child-list ref="childMethod" :parentListClick="parent"></child-list>
<Button type="primary" @click="prentClick">点击调用子组件方法&l
原创
2021-01-21 20:41:15 ·
8882 阅读 ·
0 评论