Last active
June 17, 2021 22:15
-
-
Save titusdecali/5f7835fdbae46e7da923915fdf97fbd9 to your computer and use it in GitHub Desktop.
VUE: Scroll to top after every route change
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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