这样不起作用,怎么滑动都是0;
这样就可以了;
route是这样的:
export default new Router({
mode: 'history',
scrollBehavior (to, from, savedPosition) {
if (savedPosition) {
console.log(savedPosition)
return savedPosition
} else {
return { x: 0, y: 0 }
}
},
routes: [
{
path: '/',
component: List
},
{
path:'/topic/:id',
component:Detail
}
]
})