为多个设置组件的保存按钮添加图标,以提升用户体验和一致性。

This commit is contained in:
jxxghp
2025-05-28 10:09:05 +08:00
parent 936ca24328
commit f727aea51d
9 changed files with 67 additions and 23 deletions

View File

@@ -441,7 +441,7 @@ watch(
<VRow>
<!-- 👉 Form Actions -->
<VCol cols="12" class="d-flex flex-wrap gap-4">
<VBtn @click="saveAccountInfo" :disabled="isSaving">
<VBtn @click="saveAccountInfo" :disabled="isSaving" prepend-icon="mdi-content-save">
<span v-if="isSaving">{{ t('common.saving') }}...</span>
<span v-else>{{ t('common.save') }}</span>
</VBtn>