计算属性 computed:{ fullName(){ console.log('get被调用了') return this.firstName + '-' + this.lastName } } computed计算属性和watch监视属性的区别