Frontend/Vue 2

vue3 watch

SOLYI 2021. 10. 18. 16:04
@watch
  },
  watch: {  
  
  //데이터들의 변경 사항을 감시하는 용도
  //감지가 되면 내부 로직이 실행되는 구조
  //데이터,  function 모두 가능
  
    msg: function(newValue){
      console.log('msg: ', this.msg, newValue)
    },
    reversedMessage(v){  
      console.log('reversedMEssage : ', this.reversedMessage , v)
    }
  },
반응형