refactor(components): 重命名 GhostButton 为 ActionButton 以更准确描述用途

This commit is contained in:
dap
2026-01-20 12:00:59 +08:00
parent c1b886e77f
commit f0253f6971
26 changed files with 100 additions and 100 deletions

View File

@@ -93,9 +93,9 @@ function handleSendSingle(userId: string) {
</Space>
</template>
<template #action="{ row }">
<ghost-button @click="handleSendSingle(row.userId)">
<action-button @click="handleSendSingle(row.userId)">
发送消息
</ghost-button>
</action-button>
</template>
</BasicTable>
<SendMsgModal />