一、父组件向子组件传递信息:
(1)父组件
1.在父模块的子组件标签上传递参数CompontentA
。
2.使用import引入子组件
3.使用compontents注册子组件components: { CompontentA }
(2)子组件
1.在子组件中通过props接收父组件传递来的数据props: ['fromfather']
。
2.在子组件内通过this.fromfather
访问。
二、子组件向父组件传递信息:
(1)子组件
1.在子组件中触发clickMe函数时通过emit发送数据
(2)父组件
1.在父模块的子组件标签上自定义事件类型和自定义事件
2.使用import引入子组件
3.使用compontents注册子组件components: { CompontentA }
4.可以在函数listenSon中直接使用从子组件传递来的数据msg