vue中把props中的值赋值给data
父组件<messageForm @createMsgCallback="addCreateMsg" :name="sendForm.name"></messageForm>子组件props:{name:{type:String}},computed: {computedName(){return this.name}},watch:{.
·
父组件
<messageForm @createMsgCallback="addCreateMsg" :name="sendForm.name"></messageForm>
子组件
props:{
name:{
type:String
}
},
computed: {
computedName(){
return this.name
}
},
watch:{
'name':function(val) {
console.log(val);
this.sendForm.name = val
}
},
更多推荐
已为社区贡献7条内容
所有评论(0)