vue在路由跳转时,如何让跳转的页面显示在最顶端

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue在路由跳转时,如何让跳转的页面显示在最顶端相关的知识,希望对你有一定的参考价值。

参考技术A created()
this.menu();
,

methods:
menu()
window.scrollTo(0,0);

vue路由跳转时更改页面title

一、router文件夹下的index文件中给每个path添加meta:{}:

export default new Router({
routes: [
{
path: ‘/‘,
name: ‘index‘,
component: index,
meta: {
title: ‘title1‘
}
},
{
path: ‘/studentInfo‘,
name: ‘studentInfo‘,
component: studentInfo,
meta: {
title: ‘title2‘
}
}   
]
})
二、js入口文件main.js中添加代码:

router.beforeEach((to, from, next) => {
/* 路由发生变化修改页面title */
if (to.meta.title) {
document.title = to.meta.title
}
next()
})
---------------------
作者:web_xyk
来源:CSDN
原文:https://blog.csdn.net/web_xyk/article/details/80451561
版权声明:本文为博主原创文章,转载请附上博文链接!

以上是关于vue在路由跳转时,如何让跳转的页面显示在最顶端的主要内容,如果未能解决你的问题,请参考以下文章

如何在Vue项目中给路由跳转加上进度条

Vue路由this.$router.push跳转页面不刷新

P04:路由跳转时用query传递和接受参数

iframe框架如何跳转页面

vue 不是路由跳转的页面怎么缓存

Vue方向:路由跳转的三大方式以及它们之间的区别