[Vue.js] Computed VS Watch vs Method 정리
computed와 watch… watch는 비동기적인 코드를 처리할때 쓴다고 정도만 알고 있었더니 너무 헷갈린다. computed로 안되지만 watch로는 동작하는 코드가 있다.. 한번 정리해보자. {{x}} {{y}} {{z}} var vm = new Vue({ el: '#example', data: { y: 'y' }, created: function() { // 3초후에 y값을 바꾼다. setTimeout(()=> this.y='kill bill', 3000); }, computed: { x: function () { console.log('x open'); return this.y; } }, watch: { y: function (newVal, oldVal) { console.log('y open..