计算属性
computed:{
fullName(){
console.log('get被调用了')
return this.firstName + '-' + this.lastName
}
}
day5-计算属性
阅读 26
2022-01-12
computed:{
fullName(){
console.log('get被调用了')
return this.firstName + '-' + this.lastName
}
}
相关推荐
精彩评论(0)