refactor: 스톱GNB theme 수정, 언어 정책 수정, 보안강화페이지 API 적용

This commit is contained in:
“hyeonggkim”
2025-11-06 10:49:47 +09:00
parent 28cae8c18b
commit 940a495cbe
10 changed files with 258 additions and 416 deletions

View File

@@ -8,6 +8,7 @@ onMounted(() => {
const langCodes = gameData?.lang_codes
const defaultLangCode = gameData?.default_lang_code
const stoveGnbData = gameData?.stove_gnb_json
const designTheme = gameData?.design_theme
const currentDomain =
window.location.protocol + '//' + window.location.hostname
@@ -39,10 +40,11 @@ onMounted(() => {
mode: {
theme: {
default:
stoveGnbData?.skin_type === 'gnb-dark-mini' ? 'dark' : 'light',
designTheme === 1 ? 'light' : 'dark',
support: ['dark', 'light'],
},
mini: true,
layout: 'wide',
fixed: false,
},
})