운영 이관 준비

This commit is contained in:
2025-06-05 08:09:05 +09:00
parent 989b29437b
commit 1a3706d7a5
9 changed files with 163 additions and 12 deletions
+6
View File
@@ -0,0 +1,6 @@
// API 설정
export const API_URL = 'http://localhost:3030/api';
// 기타 설정 값들
export const APP_NAME = '볼링 클럽 매니저';
export const APP_VERSION = '1.0.0';
+1 -1
View File
@@ -1,4 +1,4 @@
import apiClient from './apiClient';
import apiClient from './api';
/**
* 점수 관리 서비스
@@ -199,7 +199,6 @@ import { ref, reactive, computed, onMounted } from 'vue';
import { useRouter, useRoute } from 'vue-router';
import { useToast } from 'primevue/usetoast';
import scoreService from '@/services/scoreService';
import meetingService from '@/services/meetingService';
const router = useRouter();
const route = useRoute();