vue 监听对象属性数据改变 易小洛 2019-02-28 487 阅读1分钟 例子: 监听payable的contract_id, computed: { contract_id() { return this.Payable.contract_id }}, watch: { contract_id(newValue, oldValue) { console.log(newValue) } },