vue计算属性get和set的语法
时间: 2024-05-12 22:17:55 浏览: 136
vue计算属性get和set用法示例
5星 · 资源好评率100%
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方法。
阅读全文