vue计算属性get和set的语法
时间: 2024-05-12 14:17:55 浏览: 144
前端Vue日常工作中-computed计算属性
Vue计算属性的get和set语法如下:
```
computed: {
fullName: {
get() {
return this.firstName + ' ' + this.lastName
},
set(newValue) {
const names = newValue.split(' ')
this.firstName = names[0]
this.lastName = names[names.length - 1]
}
}
}
```
当赋值给fullName属性时,会触发set方法,而获取fullName属性时,则会触发get方法。
阅读全文