Skip to content

Instantly share code, notes, and snippets.

@titusdecali
Last active June 17, 2021 22:15
Show Gist options
  • Save titusdecali/5f7835fdbae46e7da923915fdf97fbd9 to your computer and use it in GitHub Desktop.
Save titusdecali/5f7835fdbae46e7da923915fdf97fbd9 to your computer and use it in GitHub Desktop.
VUE: Scroll to top after every route change
// In App.vue
watch: {
$route() {
window.scrollTo(0, 0)
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment