Skip to content

Instantly share code, notes, and snippets.

@bmfteixeira
Created September 18, 2017 18:34
Show Gist options
  • Save bmfteixeira/b8cdb260f5cb6c407aaa3f50bed80380 to your computer and use it in GitHub Desktop.
Save bmfteixeira/b8cdb260f5cb6c407aaa3f50bed80380 to your computer and use it in GitHub Desktop.
<template>
<div></div>
</template>
<script>
export default {
// == Lifecycle
mounted () {
window.addEventListener('scroll', this.handleScroll)
},
destroyed () {
window.removeEventListener('scroll', this.handleScroll)
},
// == Methods
methods: {
handleScroll () {
console.log('handleScroll')
return
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment