mirror of
https://github.com/romancm/gamebrary
synced 2024-12-01 07:19:14 +00:00
update board route, remove settings route
This commit is contained in:
parent
3b9fc0c7ab
commit
980c4c8da7
1 changed files with 4 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
import Vue from 'vue';
|
||||
import Router from 'vue-router';
|
||||
import GameBoard from '@/pages/GameBoard';
|
||||
import Board from '@/pages/Board';
|
||||
import SessionExpired from '@/pages/SessionExpired';
|
||||
import Platforms from '@/pages/Platforms';
|
||||
import NotFound from '@/pages/NotFound';
|
||||
|
@ -28,18 +28,13 @@ export default new Router({
|
|||
},
|
||||
{
|
||||
path: '/board',
|
||||
name: 'game-board',
|
||||
component: GameBoard,
|
||||
},
|
||||
{
|
||||
path: '/settings',
|
||||
name: 'settings',
|
||||
component: GameBoard,
|
||||
name: 'board',
|
||||
component: Board,
|
||||
},
|
||||
{
|
||||
path: '/auth/:authProvider',
|
||||
name: 'auth',
|
||||
component: GameBoard,
|
||||
component: Board,
|
||||
},
|
||||
{
|
||||
path: '*',
|
||||
|
|
Loading…
Reference in a new issue