在vuejs路由器中使用此功能时,我在控制台中看到错误。
export default new Router({
mode: 'history',
routes: [
{
path: '/',
name: 'Root',
component: ListProject
}
,
{
path: '/theme/:slug/:id',
name: 'Thematic',
component: Thematic,
}
],
scrollBehavior() {
return { x: 0, y: 0 }
}
})
就我而言,每次我们转到新页面时,我都想返回页面顶部
错误
element.geometry is undefined