修改 PluginCard.vue,替换 VCardText 为 VCardItem,以优化组件结构

This commit is contained in:
jxxghp
2025-01-15 17:07:16 +08:00
parent fb1f6abf2e
commit 942a536289
+2 -2
View File
@@ -532,14 +532,14 @@ watch(
<VDivider /> <VDivider />
<VersionHistory :history="props.plugin?.history" /> <VersionHistory :history="props.plugin?.history" />
<VDivider /> <VDivider />
<VCardText> <VCardItem>
<VBtn @click="updatePlugin" block> <VBtn @click="updatePlugin" block>
<template #prepend> <template #prepend>
<VIcon icon="mdi-arrow-up-circle-outline" /> <VIcon icon="mdi-arrow-up-circle-outline" />
</template> </template>
更新到最新版本 更新到最新版本
</VBtn> </VBtn>
</VCardText> </VCardItem>
</VCard> </VCard>
</VDialog> </VDialog>
</div> </div>