子组件中的步骤:
1.在data中定义需要传递的值
data(){
return{
childMsg:"子组件传给父组件的值"
}
}
2.传值方法
toParentClick(){
this.$emit("parentClick","this.childMsg");
}
toParentClick:父组件中需要绑定的方法名
this.childMsg:传递的数据
父组件接收的步骤
1.调用子组件
2.注册所调用的子组件
在components中注册
3.在父组件中引用子组件
<child @toParentClick="childClick"></child>
4.childClick方法接收子组件传递的数据