VUE父子组件之间通信的两种方式

1.父组件给子组件传递信息 :props
props 的形式有多种
props:[‘111’,‘222’],
props:{
test:{
type:String,
default:‘111’
}
}
2.子组件给父组件传递信息:$emit

this.$emit(‘子组件的方法’, this.message(传递给父组件的信息));

你可能感兴趣的:(小吴的vue学习之路,vue)