webapp: always scroll up when navigating to another view
This commit is contained in:
parent
625409fbb2
commit
ae9e997cb4
@ -22,6 +22,13 @@ import { createRouter, createWebHistory } from 'vue-router';
|
||||
const router = createRouter({
|
||||
history: createWebHistory(import.meta.env.BASE_URL),
|
||||
linkActiveClass: 'active',
|
||||
scrollBehavior() {
|
||||
return new Promise((resolve) => {
|
||||
setTimeout(() => {
|
||||
resolve({ top: 0 });
|
||||
}, 100);
|
||||
});
|
||||
},
|
||||
routes: [
|
||||
{
|
||||
path: '/',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user