feat: 로딩 수정

This commit is contained in:
“hyeonggkim”
2025-11-07 18:01:58 +09:00
parent 15ccabdadb
commit ad4e1eb9e1
3 changed files with 32 additions and 5 deletions

View File

@@ -50,7 +50,6 @@ onMounted(() => {
}
mountedInstance = (window as any).StoveGnb.mount('#stove-wrap', stoveGnbOptions)
console.log("🚀 ~ onMounted ~ stoveGnbOptions:", stoveGnbOptions)
}
})
@@ -62,5 +61,23 @@ onBeforeUnmount(() => {
})
</script>
<template>
<div id="stove-wrap" class="relative z-[5]" />
<div class="stove-gnb-new">
<div id="stove-wrap" class="relative z-[5]" />
</div>
</template>
<style scoped>
.stove-gnb-new {
@apply h-[48px];
}
[data-theme='light'] {
.stove-gnb-new {
@apply bg-white;
}
}
[data-theme='dark'] {
.stove-gnb-new {
@apply bg-black;
}
}
</style>