영화 검색 사이트
[영화 검색 사이트] Vue Router Scroll Behavior
mikrw
2023. 2. 12. 14:29
https://router.vuejs.org/guide/advanced/scroll-behavior.html
Scroll Behavior | Vue Router
When using client-side routing, we may want to scroll to top when navigating to a new route, or preserve the scrolling position of history entries just like real page reload does. Vue Router allows you to achieve these and even better, allows you to comple
router.vuejs.org
페이지 전환 시 스크롤 위치 복구
route > index.js
...
scrollBehavior() {
return { top: 0 }
},
...