优化 PluginCard 组件

This commit is contained in:
jxxghp
2025-05-26 12:44:08 +08:00
parent d81120ab8f
commit 139eaa7016
4 changed files with 10 additions and 10 deletions

View File

@@ -688,15 +688,15 @@ watch(
</VRow>
</VForm>
</VCardText>
<VDivider />
<VCardActions class="pt-3">
<VSpacer />
<VBtn @click="pluginCloneDialog = false" variant="outlined">
{{ t('common.cancel') }}
</VBtn>
<VBtn color="primary" @click="executePluginClone" :disabled="!cloneForm.suffix.trim()">
<VIcon icon="mdi-content-copy" class="me-2" />
<VBtn
color="primary"
@click="executePluginClone"
prepend-icon="mdi-content-copy"
class="px-5"
:disabled="!cloneForm.suffix.trim()"
>
{{ t('plugin.createClone') }}
</VBtn>
</VCardActions>