vue如何给它的data值赋值

activeDisplay的值如何改变

用$set();方法
vm.$set('b', 2) 或者 Vue.set(data, 'c', 3)
this.someObject = Object.assign({}, this.someObject, { a: 1, b: 2 })

activeDisplay的值如何改变

用$set();方法
vm.$set('b', 2) 或者 Vue.set(data, 'c', 3)
this.someObject = Object.assign({}, this.someObject, { a: 1, b: 2 })