Vue 로그인 경로 admin 추가

This commit is contained in:
이진기
2024-11-19 15:51:49 +09:00
parent aef25bc3dc
commit aed1321d88
6 changed files with 5 additions and 42 deletions

View File

@@ -16,7 +16,7 @@ export const useAuthStore = defineStore('authStore', () => {
);
const LoginAPI = async () => {
return await useAxios().post(`/api/login`, loginRequest.value);
return await useAxios().post(`/api/admin/login`, loginRequest.value);
};
return {