diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-01 09:16:18 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-01 09:16:18 +0900 |
| commit | 4ec264755f2aff07d9db6df83ec96b8e2f1e08b1 (patch) | |
| tree | 3fb8cad7dc5c45b6bf2688eb30a140553ba0e30c /src/client | |
| parent | Fix bug (diff) | |
| download | misskey-4ec264755f2aff07d9db6df83ec96b8e2f1e08b1.tar.gz misskey-4ec264755f2aff07d9db6df83ec96b8e2f1e08b1.tar.bz2 misskey-4ec264755f2aff07d9db6df83ec96b8e2f1e08b1.zip | |
Update router.ts
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/router.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/router.ts b/src/client/router.ts index 9c028e9edc..31c358ffe7 100644 --- a/src/client/router.ts +++ b/src/client/router.ts @@ -50,12 +50,11 @@ export const router = new VueRouter({ { 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 }; } - }*/ + } }); |