fix: 삭제 기능 text 버튼으로 처리

This commit is contained in:
Yesol Choi
2025-05-30 08:47:49 +09:00
parent 2c8539fed3
commit f0480ce94a

View File

@@ -633,7 +633,7 @@ const moveDown = (index: number) => {
<span v-else-if="column.key === 'actions'" class="flex gap-1"> <span v-else-if="column.key === 'actions'" class="flex gap-1">
<VCustomButton @click="moveUp(index)" icon="lucide:chevron-up" /> <VCustomButton @click="moveUp(index)" icon="lucide:chevron-up" />
<VCustomButton @click="moveDown(index)" icon="lucide:chevron-down" /> <VCustomButton @click="moveDown(index)" icon="lucide:chevron-down" />
<VCustomButton @click="onPriceDelete(index)" icon="lucide:x" /> <VCustomButton @click="onPriceDelete(index)">{{"삭제"}}</VCustomButton>
</span> </span>
<span v-else>{{value}}</span> <span v-else>{{value}}</span>
</div> </div>