先定义一个子组件,在组件中注册props
<div>{{message}}(子组件)</div>
在父组件中,引入子组件,并传入子组件内需要的值
<div>父组件</div>
<child :message="parentMsg"></child>
这种方式只能由父向子传递,子组件不能更新父组件内的data
原文链接:https://www.f2er.com/vue/38258.html先定义一个子组件,在组件中注册props
<div>{{message}}(子组件)</div>
在父组件中,引入子组件,并传入子组件内需要的值
<div>父组件</div>
<child :message="parentMsg"></child>
这种方式只能由父向子传递,子组件不能更新父组件内的data
原文链接:https://www.f2er.com/vue/38258.html