gitakachan / vue-project-collections-and-issues

vue issues
0 stars 0 forks source link

回到最上方 #16

Open gitakachan opened 2 years ago

gitakachan commented 2 years ago
//router/index.js
const router = createRouter({
 //...
});
router.beforeEach((to, from, next) => {
  // 让页面回到顶部
  document.documentElement.scrollTop = 0;
  // 一定不要忘记调用 next()
  next();
});