Vue提升06 組件間通訊

父子組件通訊 父組件向子組件傳遞數據 父組件向子組件傳遞數據,直接使用prop便可,父組件中在子組件的實例上經過v-bind傳入prop:html <LeftChild :message="myMessage"></LeftChild> 在子組件中聲明瞭這個prop以後就可使用:vue <template> <h1>{{message}}</h1> </template> <script>
相關文章
相關標籤/搜索