1.子父组件通信 在父组件中:使用v-model绑定响应式数据将其传递给child const message = ref('') <son v-model='message'></son> 在子组件中: 接收props