upgrade
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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('')
|
||||
|
||||
Reference in New Issue
Block a user