子組件中的步驟:
1.在data中定義需要傳遞的值
data(){
return{
childMsg:"子組件傳給父組件的值"
}
}
2.傳值方法
toParentClick(){
this.$emit("parentClick","this.childMsg");
}
toParentClick:父組件中需要綁定的方法名
this.childMsg:傳遞的數(shù)據(jù)
父組件接收的步驟
1.調(diào)用子組件
2.注冊(cè)所調(diào)用的子組件
在components中注冊(cè)
3.在父組件中引用子組件
<child @toParentClick="childClick"></child>
4.childClick方法接收子組件傳遞的數(shù)據(jù)