一、父组件获取子组件的变量、方法
1.调用子组件的时候 定义一个ref
<rchild ref="myChild"></rchild>
2.在父组件里面通过
this.$refs.myChild.属性
this.$refs.myChild.方法()
二、子组件获取父组件的变量、方法
直接在子组件写:
this.$parent.属性
this.$parent.方法()
——————— 但是 ————————
子组件获取父组件变量的方式是不够强大的,日常用还可。了解props是你必须要做的(企业必备)