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 오류가 남