티스토리 뷰

공부

[JS] VueJS bind scroll event

승가비 2019. 12. 22. 00:14
728x90
export default {
  methods: {
    handleScroll (event) {
      // Any code to be executed when the window is scrolled
    }
  },
  created () {
    window.addEventListener('scroll', this.handleScroll);
  },
  destroyed () {
    window.removeEventListener('scroll', this.handleScroll);
  }
}

[출처] https://stackoverflow.com/questions/45822150/how-to-listen-to-the-window-scroll-event-in-a-vuejs-component

728x90

'공부' 카테고리의 다른 글

[FTP] command  (0) 2019.12.22
[SQL] Count by condition  (0) 2019.12.22
[JS] Browser get scroll direction  (0) 2019.12.22
[Git] How do I get the commit count?  (0) 2019.12.22
[Spring] Memory leak fixed!  (0) 2019.12.22
댓글