똑같은 삽질은 2번 하지 말자

Vue Component (watch vs computed) 본문

Vue

Vue Component (watch vs computed)

곽빵 2020. 4. 17. 11:55

computed

- 단순한 값에 대한 가벼운 계산에 사용됨

- validation(확인, 검증)에 사용됨

- 간단한 텍스트 처리에 사용됨

watch

- 매번 실행하기 부담스러운 무거운 로직들에 사용 됨

- 데이터 요청에 적합

https://vuejs.org/v2/guide/computed.html#ad

 

Computed Properties and Watchers — Vue.js

Vue.js - The Progressive JavaScript Framework

vuejs.org

 

Comments