Improve navigation

This commit is contained in:
syuilo 2020-02-01 09:59:55 +09:00
parent d47d6bb12b
commit 149de5b17b
2 changed files with 10 additions and 5 deletions

View file

@ -54,6 +54,8 @@ if (localStorage.getItem('kyoppie') === 'yuppie') {
location.reload(true);
}
window.history.scrollRestoration = 'manual';
if (localStorage.getItem('theme') == null) {
applyTheme(lightTheme);
}

View file

@ -52,10 +52,13 @@ export const router = new VueRouter({
],
// なんかバギー
scrollBehavior(to, from, savedPosition) {
if (savedPosition) {
return savedPosition;
} else {
return { x: 0, y: 0 };
}
setTimeout(() => {
if (savedPosition) {
window.scroll({ top: savedPosition.y, behavior: 'instant' });
} else {
window.scroll({ top: 0, behavior: 'instant' });
}
}, 1000);
return;
}
});