vue 監聽對象屬性數據改變

例子:
監聽payable的contract_id,


computed: {   
 contract_id() {  
      return this.Payable.contract_id  
  }},
watch: {
    contract_id(newValue, oldValue) {         
     console.log(newValue)   
   }
},複製代碼
相關文章
相關標籤/搜索