vue 새로고침시 스크롤 최상단 이동

해적왕·2023년 5월 8일
0
post-custom-banner
const router = new VueRouter({
  mode: "history",
  routes: defaultRoutes,
 scrollBehavior(to, from, savedPosition) {
    return { x: 0, y: 0 }
  },
});

특정 컴포넌트는 기억하고 싶을 때

const router = new VueRouter({
  mode: "history",
  routes: defaultRoutes,
  scrollBehavior(to, from, savedPosition) {
    if (to.name === 'Home') {
      return savedPosition;
    } else {
      return { x: 0, y: 0 }
    }
  },
});
profile
프론트엔드

0개의 댓글