fix. AtomsButtonLauncher 컴포넌트 수정

This commit is contained in:
clkim
2025-10-30 18:22:26 +09:00
parent 74ce5a0714
commit db9f3094fd
13 changed files with 218 additions and 92 deletions

View File

@@ -176,7 +176,7 @@ onBeforeUnmount(() => {
<div class="game-wrapper" :class="{ 'is-fixed': isPassedStoveGnb }">
<AtomsLocaleLink to="/brand" class="mx-auto md:hidden">
<img
:src="gnbData?.bi_path"
:src="getResolvedHost(gnbData?.bi_path)"
:alt="gameData?.game_name"
class="h-[30px]"
/>
@@ -193,7 +193,7 @@ onBeforeUnmount(() => {
<div class="nav-logo">
<AtomsLocaleLink to="/brand" @click="handleMenuClose">
<img
:src="gnbData?.bi_path"
:src="getResolvedHost(gnbData?.bi_path)"
:alt="gameData?.game_name"
class="h-[30px]"
/>
@@ -307,7 +307,7 @@ onBeforeUnmount(() => {
</div>
</nav>
<div ref="startRef" class="btn-start">
<BlocksButtonDownload
<AtomsButtonLauncher
type="custom"
platform="pc"
:background-color="
@@ -325,13 +325,13 @@ onBeforeUnmount(() => {
class="nav-1depth"
>
{{ gnb1depthButtonData?.btn_info?.txt_btn_name }}
</BlocksButtonDownload>
</AtomsButtonLauncher>
<div v-if="gnb2depthButtonData" class="nav-2depth">
<ul>
<li v-for="(item, key) in gnb2depthButtonData" :key="key">
<BlocksButtonDownload type="custom" :platform="key">
<AtomsButtonLauncher type="custom" :platform="key">
{{ item.btn_info?.txt_btn_name }}
</BlocksButtonDownload>
</AtomsButtonLauncher>
</li>
</ul>
</div>