feat: 토너먼트 뷰 추가 및 라우터 설정

This commit is contained in:
2026-01-23 17:39:04 +00:00
parent 4997ef9a1c
commit 8ea709d7e9
3 changed files with 798 additions and 0 deletions
+10
View File
@@ -13,6 +13,7 @@ import BattleCenterView from '../views/BattleCenterView.vue';
import BattleSimulatorView from '../views/BattleSimulatorView.vue';
import NpcControlView from '../views/NpcControlView.vue';
import NotFoundView from '../views/NotFoundView.vue';
import TournamentView from '../views/TournamentView.vue';
import { useSessionStore } from '../stores/session';
const routes = [
@@ -120,6 +121,15 @@ const routes = [
requiresGeneral: true,
},
},
{
path: '/tournament',
name: 'tournament',
component: TournamentView,
meta: {
requiresAuth: true,
requiresGeneral: true,
},
},
{
path: '/login',
name: 'login',