router/index.js中
Vue.use(VueRouter);
const router = new VueRouter({
routes: [
{
path: '/',
redirect: '/index',
},
],
// 解决页面跳转保存滚动条位置问题
scrollBehavior(to, from, savedPosition) {
document.getElementById("mian").scrollTop=0;
},
});