优化 App.vue 中的国际化代码,调整 LoadingBanner 组件的样式,增加 SubscribeFilesDialog 组件的加载状态管理。

This commit is contained in:
jxxghp
2025-05-12 07:56:52 +08:00
parent 02cd2f1570
commit 11a2d07935
3 changed files with 9 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ const props = defineProps({
</script>
<template>
<div class="w-full text-center text-gray-500 text-sm flex flex-col items-center">
<div class="w-full text-center text-gray-500 text-sm flex flex-col items-center mb-5">
<VProgressCircular v-if="!props.text || !props.progress" class="mb-3" size="64" indeterminate color="primary" />
<VProgressCircular v-if="props.progress" class="mb-3" color="primary" :model-value="props.progress" size="64" />
<span>{{ props.text }}</span>