页面之间跳转,打开新的一个页面显示在顶部
在main.js 中添加代码:
router.afterEach((to,from, next) => {
window.scrollTo(0,0)
})
或者
在index.js里添加
exportdefaultnew Router({
routes: [{...}],
scrollBehavior(to, from,savedPosition) {
return {
x: 0,
y: 0 }
}
})
页面之间跳转,打开新的一个页面显示在顶部
在main.js 中添加代码:
router.afterEach((to,from, next) => {
window.scrollTo(0,0)
})
或者
在index.js里添加
exportdefaultnew Router({
routes: [{...}],
scrollBehavior(to, from,savedPosition) {
return {
x: 0,
y: 0 }
}
})
本文标题:vue中页面跳转,显示在顶部
本文链接:https://www.haomeiwen.com/subject/enhzmqtx.html
网友评论