feat: 비밀번호 변경 UI (헤더 잠금 아이콘 + 모달)
CI / build (push) Failing after 14m54s

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-05-31 18:46:57 +09:00
parent 9e81029a7d
commit 510eb0f4f8
6 changed files with 191 additions and 0 deletions
+10
View File
@@ -16,6 +16,15 @@ export const useUiStore = defineStore('ui', () => {
sidebarOpen.value = false
}
// 비밀번호 변경 모달
const passwordOpen = ref(false)
function openPassword() {
passwordOpen.value = true
}
function closePassword() {
passwordOpen.value = false
}
// 로그인 팝업 (회원가입 팝업은 닫고 전환)
function openLogin(redirect = '') {
redirectPath.value = redirect || ''
@@ -39,5 +48,6 @@ export const useUiStore = defineStore('ui', () => {
return {
loginOpen, signupOpen, redirectPath, openLogin, closeLogin, openSignup, closeSignup,
sidebarOpen, toggleSidebar, closeSidebar,
passwordOpen, openPassword, closePassword,
}
})