2021-01-11

properties: {
businessColor: { // 属性名
type: null, // String, Number, Boolean, Object, Array, null(表示任意类型)
value: ‘’,
observer: function (newVal, oldVal) {
console.log(oldVal + ‘oldValwid1=’ + newVal)
this.setData({
winHeight: newVal
})
}
},
},

上一篇:vue3.0 watch监听


下一篇:[Vue]侦听属性watch(十)