其他分享
首页 > 其他分享> > 父子组件通信

父子组件通信

作者:互联网

父亲用子组件属性/方法

html:
<Son ref="sonHandler" />
重点是通过ref获取
script:
this.$refs.sonHandler.name //此处name用属性名或方法名都可以调用子组件Son的data/methods/computed里的方法/属性

子组件用父父亲的属性/方法

如果只用data里的属性,那有两种方法

第一种:通过props,这种方法不可以改父组件的值
第二种:用this.$parent.name,这样可以改父组件的属性值,而且父组件的也会跟着改

如果要用methods/compute

只能通过this.$parent.functioName()的方式

标签:name,parent,通信,父子,methods,组件,方法,属性
来源: https://www.cnblogs.com/Lilc20201212/p/15947361.html