Vue Router navigate or scroll to anchors (# anchors)
问题 I am struggling with vue-router not scrolling/navigating to anchor tags (ex: #anchor ). I have read various solutions here on Stack Overflow, but none have worked so far. Please find below the code I am using right now, which is not working: main.js const router = createRouter({ history: createWebHistory(), routes: [ { path: "/docs/1.0/:title", component: Content, name: "docs" } ], scrollBehavior(to, from, savedPosition) { if (savedPosition) { return savedPosition; } if (to.hash) { return {