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

@@ -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('')