This commit is contained in:
syuilo
2020-02-01 09:12:04 +09:00
parent 38dded5061
commit 53f018aae6
3 changed files with 32 additions and 3 deletions

View File

@@ -49,5 +49,13 @@ export const router = new VueRouter({
{ path: '/auth/:token', component: () => import('./pages/auth.vue').then(m => m.default) },
{ path: '/authorize-follow', component: () => import('./pages/follow.vue').then(m => m.default) },
/*{ path: '*', component: MkNotFound }*/
]
],
/* なんかバギー
scrollBehavior(to, from, savedPosition) {
if (savedPosition) {
return savedPosition;
} else {
return { x: 0, y: 0 };
}
}*/
});