로그인 백엔드 구현 및 로그인 프론트 기능 구현
This commit is contained in:
16
nuxt/constants/login/index.ts
Normal file
16
nuxt/constants/login/index.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import type { LoginReqType, LoginResType } from '~/types/login';
|
||||
|
||||
export const DEFAULT_AUTHENTICATION_VALUE: LoginReqType = {
|
||||
memberId: '',
|
||||
password: '',
|
||||
remember: false
|
||||
};
|
||||
|
||||
export const DEFAULT_AUTHORIZATION_VALUE: LoginResType = {
|
||||
memberName: '',
|
||||
deptNm: '',
|
||||
instNm: '',
|
||||
menuList: [],
|
||||
permitApiList: [],
|
||||
authenticated: false
|
||||
};
|
||||
Reference in New Issue
Block a user