[Vue warn]: Error in v-on handler: ReferenceError is not defined
Painter.vue를 작성하는 도중 위와 같은 오류가 발생했다. 원인을 알고서는 나중에 허탈했다. Drawing with mousemove event Canvas not supported 캔버스 되돌리기 캔버스 초기화 캔버스 저장하기 methods: 에서 stopDrawing(e) 함수가 문제였다. 아주아주 단순한 this. 키워드를 명시하지 않아서 발생한 문제였다. stopDrawing(e) { if (this.isDrawing) { this.drawLine(this.x, this.y, e.offsetX, e.offsetY); this.x = 0; this.y = 0; this.isDrawing = false; console.log(this.isDrawing); } 사소한 문제였는데 원인 찾느라고 고..
Web/개발 환경
2021. 6. 17. 12:47