summaryrefslogtreecommitdiff
path: root/src/client/router.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-10-27 18:11:41 +0900
committerGitHub <noreply@github.com>2020-10-27 18:11:41 +0900
commit6258ce75b7ae97584100ecccdf0a7cd0225da7b2 (patch)
tree9b969daf7cd37a06c993b20a536b7821466b256c /src/client/router.ts
parentUpdate popup animation (diff)
downloadsharkey-6258ce75b7ae97584100ecccdf0a7cd0225da7b2.tar.gz
sharkey-6258ce75b7ae97584100ecccdf0a7cd0225da7b2.tar.bz2
sharkey-6258ce75b7ae97584100ecccdf0a7cd0225da7b2.zip
Reversi (#6765)
* wip * wip * wip * wip * Update game.setting.vue * wip * wip * Update game.setting.vue * wip * Update game.board.vue * wip * Update sidebar.ts
Diffstat (limited to 'src/client/router.ts')
-rw-r--r--src/client/router.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/router.ts b/src/client/router.ts
index 56320d224e..5068eccfea 100644
--- a/src/client/router.ts
+++ b/src/client/router.ts
@@ -70,6 +70,8 @@ export const router = createRouter({
{ path: '/instance/abuses', component: page('instance/abuses') },
{ path: '/notes/:note', name: 'note', component: page('note'), props: route => ({ noteId: route.params.note }) },
{ path: '/tags/:tag', component: page('tag'), props: route => ({ tag: route.params.tag }) },
+ { path: '/games/reversi', component: page('reversi/index') },
+ { path: '/games/reversi/:gameId', component: page('reversi/game'), props: route => ({ gameId: route.params.gameId }) },
{ path: '/api-console', component: page('api-console') },
{ path: '/auth/:token', component: page('auth') },
{ path: '/miauth/:session', component: page('miauth') },