父子组件通信 这个很简单,父组件中使用v-bind绑定传送,子组件使用props接收即可 。 例如:在父组件中 <template> <div> <div :Data="Data"></div> </div> </temp