vue router 跳转后回到顶部

// 跳转后返回顶部
router.afterEach((to,from,next) => {
window.scrollTo(0,0);
})

你可能感兴趣的:(vue router 跳转后回到顶部)