시스템관리 > 권한관리 > 사이트관리 화면과 API 추가

This commit is contained in:
이진기
2024-11-19 16:01:42 +09:00
parent aed1321d88
commit 843db73d12
10 changed files with 538 additions and 1 deletions

View File

@@ -19,9 +19,14 @@ export const useAuthStore = defineStore('authStore', () => {
return await useAxios().post(`/api/admin/login`, loginRequest.value);
};
const permitApiList = computed(() => {
return loginResponse.value.permitApiList;
});
return {
loginRequest,
loginResponse,
LoginAPI
LoginAPI,
permitApiList
};
});