有没有办法我可以在同一页面上使用vue-router导航到{x:0,y:0}的顶部,而无需使用“哈希”。我的尝试代码如下
//。vue文件
<v-btn
:to="{
name: 'publications',
position: { x: 0, y: 0 }
}">Top</v-btn>
//router.js
const router = new VueRouter({
mode: "history",
base: process.env.BASE_URL,
routes,
scrollBehavior(to) {
if (to.hash) {
return { selector: to.hash };
} else {
return { x: 0, y: 0 };
}
},
});