fix. config -> runtimeConfig 명칭 통일

This commit is contained in:
clkim
2025-11-07 12:55:00 +09:00
parent 2e55cda20e
commit aafc3ae9b9
19 changed files with 590 additions and 384 deletions

View File

@@ -8,10 +8,6 @@ export const useGameDataStore = defineStore('gameData', () => {
gameData.value = data
}
const setLangCode = (data: string) => {
langCode.value = data
}
const clearGameData = () => {
gameData.value = null
}
@@ -20,7 +16,6 @@ export const useGameDataStore = defineStore('gameData', () => {
langCode,
gameData,
setGameData,
setLangCode,
clearGameData,
}
})