This commit is contained in:
Julian Freeman
2026-03-31 20:29:10 -04:00
parent 46c622fd86
commit 9aa6f9cd1d
3 changed files with 5 additions and 10 deletions

View File

@@ -19,14 +19,14 @@
<path d="M21 12a9 9 0 0 1-15 6.7L3 16"></path>
</svg>
</span>
{{ store.loading ? '正在同步...' : '同步状态' }}
{{ store.loading ? '正在刷新...' : '刷新状态' }}
</button>
<button
@click="installSelected"
class="primary-btn action-btn"
:disabled="store.loading || store.isBusy || store.selectedEssentialIds.length === 0"
>
安装/更新所选 ({{ store.selectedEssentialIds.length }})
安装所选 ({{ store.selectedEssentialIds.length }})
</button>
</div>
</header>

View File

@@ -47,8 +47,8 @@
<section class="settings-section">
<h3 class="section-title">关于</h3>
<div class="settings-card about-card">
<p>Windows 软件管理器 v0.1.0</p>
<p class="hint">基于 Tauri WinGet 构建的现代化软件管理工具</p>
<p>Windows 软件管理器 v{{ version }}</p>
<p class="hint">基于 Tauri WinGet 构建的 Windows 软件管理工具</p>
</div>
</section>
</div>
@@ -65,6 +65,7 @@
<script setup lang="ts">
import { ref, computed, onMounted } from 'vue'
import { useSoftwareStore } from '../store/software'
import { version } from "../../package.json";
const store = useSoftwareStore()
const tempRepoUrl = ref('')