Skip to content

Instantly share code, notes, and snippets.

@enkot
Created July 15, 2019 16:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enkot/c1f045d23420281959aa778bc7c12709 to your computer and use it in GitHub Desktop.
Save enkot/c1f045d23420281959aa778bc7c12709 to your computer and use it in GitHub Desktop.
const scrollMixin = {
data() {
return {
pageOffset: 0
}
},
mounted() {
window.addEventListener('scroll', this.update)
},
destroyed() {
window.removeEventListener('scroll', this.update)
},
methods: {
update() {
this.pageOffset = window.pageYOffset
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment