fix. 버튼 컴포넌트 수정

This commit is contained in:
clkim
2025-09-16 19:44:47 +09:00
parent 07f1846199
commit 525b350ae4
2 changed files with 96 additions and 22 deletions

View File

@@ -18,13 +18,14 @@ const resourcesData = computed(() => {
<template>
<template v-if="resourcesData">
<AtomsButton v-for="button in resourcesData" :key="button.group_label">
<AtomsButton
v-for="button in resourcesData"
:key="button.group_label"
:background-color="button.btn_info?.color_code_btn"
:text-color="button.btn_info?.color_code_txt"
:disabled="button.btn_info?.disabled"
>
{{ button.btn_info?.txt_btn_name }}
</AtomsButton>
<!-- :style="{
backgroundColor: button.btn_info?.color_code_btn,
color: button.btn_info?.color_code_txt,
}" -->
</template>
</template>