优化多个组件中的按钮样式

This commit is contained in:
jxxghp
2025-05-24 14:05:51 +08:00
parent b3bff5c6f5
commit 3fe7ed0e1d
39 changed files with 137 additions and 147 deletions

View File

@@ -1453,7 +1453,11 @@ function onDragEndPlugin(evt: any) {
<!-- 新建文件夹对话框 -->
<VDialog v-if="newFolderDialog" v-model="newFolderDialog" max-width="400">
<VCard>
<VCardTitle>{{ t('plugin.newFolder') }}</VCardTitle>
<VDialogCloseBtn @click="newFolderDialog = false" />
<VCardItem>
<VCardTitle>{{ t('plugin.newFolder') }}</VCardTitle>
</VCardItem>
<VDivider />
<VCardText>
<VTextField
v-model="newFolderName"
@@ -1464,8 +1468,9 @@ function onDragEndPlugin(evt: any) {
</VCardText>
<VCardActions>
<VSpacer />
<VBtn @click="newFolderDialog = false">{{ t('plugin.cancel') }}</VBtn>
<VBtn color="primary" @click="createNewFolder">{{ t('plugin.create') }}</VBtn>
<VBtn color="primary" @click="createNewFolder" prepend-icon="mdi-folder-plus" class="px-5">{{
t('plugin.create')
}}</VBtn>
</VCardActions>
</VCard>
</VDialog>