본문 바로가기

두두의 IT

vue 끄적끄적

728x90
//Xxx.vue

<script>
export default {
	data: function() {
    	events: ['mousemove']
    },
	mounted() {
    	this.events.forEach(function (event){
        	window.addEventListener(event, this.메서드)
        }, this)
    }
}
</script>

두 번째 this는 바인딩 해주는 기능.

안 써주면 TypeError: Cannot read property '메서드' of undefined 오류가 남

'두두의 IT' 카테고리의 다른 글

NodeJS  (0) 2023.03.20
SOLID  (0) 2022.10.12
좋은 객체 지향 프로그래밍이란?  (0) 2022.10.12
스프링이란?  (0) 2022.10.11
2차 과제 중  (0) 2022.09.29