5.2 組件通信
盡管子組件可以用this.$parent訪問它的父組件及其父鏈上任意的實(shí)例,不過子組件應(yīng)當(dāng)避免直接依賴父組件的數(shù)據(jù),盡量顯式地使用 props 傳遞數(shù)據(jù)。另外,在子組件中修改父組件的狀態(tài)是非常糟糕的做法,因?yàn)椋?nbsp;
v-on監(jiān)聽自定義事件:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <!--子組件模板--> <template id="child-template"> <input v-model="msg" /> <button v-on:click="notify">Dispatch E