data() { return { obj: { name: 'shun' } } }
对象只有name属性,通过$set给对象添加属性(三个参数,对象名,属性名, 属性)
setage() { this.$set(this.obj, 'age', 18) }