1. 程式人生 > >vue router 跳轉後回到頂部

vue router 跳轉後回到頂部

在main.js中加上這段程式碼

// 跳轉後返回頂部
router.afterEach((to,from,next) => {
  window.scrollTo(0,0);
})