vue scroll 이벤트

Posted by Albert 917Day 22Hour 17Min 26Sec ago [2022-10-15]

mounted() {
    document.addEventListener('scroll', this.scrollEvents);
  },
  unmounted() {
    document.removeEventListener('scroll', this.scrollEvents);
  },
methods: {
    scrollEvents: function() {
      console.log(window.scrollY);
    }
}

씸플하게 mounted 와 unmounted 항목에 scrollListener 추가하면 스크롤시 관련 이벤트를 지정한 함수를 통하여 출력할 수 있다 






LIST

Copyright © 2014 visionboy.me All Right Reserved.