Skip to content

Instantly share code, notes, and snippets.

@siumhossain
Created May 8, 2022 09:29
Show Gist options
  • Save siumhossain/bca9bc24c292032e5b41db7529bfcd6c to your computer and use it in GitHub Desktop.
Save siumhossain/bca9bc24c292032e5b41db7529bfcd6c to your computer and use it in GitHub Desktop.
window scroll event in nuxt js
created () {
         if (process.client) { 
            window.addEventListener('scroll', this.handleScroll);
         }
      },
  methods: {
      
    
         handleScroll () {
            console.log(window.scrollY)
         }
      
      
      },
      
     destroyed () {
         if (process.client) { 
            window.removeEventListener('scroll', this.handleScroll);
         }
   
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment