在用vue進行項目開發的時候,父子組件之間的通訊是常常被用到的,下面就來具體說說父子組件通訊的三種方式:vue
父組件:spa
<template> <div> <h1>我是父組件!</h1> <child></child> </div> </template> <script> import Child from '../components/child.vue' export default { components: {Child}, } </script>
具體參考:https://www.jb51.net/article/140581.htm.net