fix. 공통 스타일 분리

This commit is contained in:
clkim
2025-09-25 13:19:24 +09:00
parent 7aa2ee7f36
commit ab58a98acf
11 changed files with 70 additions and 137 deletions

View File

@@ -38,9 +38,8 @@ export default defineNuxtRouteMiddleware(async (to, _from) => {
})) as PageDataResponse | null
if (response?.code === 0 && 'value' in response) {
const cleanData = JSON.parse(JSON.stringify(response.value))
store.setPageData(cleanData)
store.setPageData(response.value)
console.log('🚀 ~ cleanData:', response.value)
} else {
store.clearPageData()
}