feat: 关于Dialog

This commit is contained in:
lanyeeee
2025-08-04 05:16:39 +08:00
parent 63b1867ff5
commit 851cfe1453
3 changed files with 72 additions and 1 deletions
+56
View File
@@ -0,0 +1,56 @@
<script setup lang="ts">
import { getVersion } from '@tauri-apps/api/app'
import { ref, onMounted } from 'vue'
import icon from '../../src-tauri/icons/128x128.png'
const showing = defineModel<boolean>('showing', { required: true })
const version = ref('')
onMounted(async () => {
version.value = await getVersion()
})
</script>
<template>
<n-modal v-model:show="showing">
<n-dialog :showIcon="false" @close="showing = false">
<div class="flex flex-col items-center gap-row-6">
<img :src="icon" alt="icon" class="w-32 h-32" />
<div class="text-center text-gray-400 text-xs">
<div>
如果本项目对你有帮助欢迎来
<n-a href="https://github.com/lanyeeee/bilibili-video-downloader" target="_blank">GitHub</n-a>
点个Star支持
</div>
<div class="mt-1">你的支持是我持续更新维护的动力🙏</div>
</div>
<div class="flex flex-col w-full gap-row-3 px-6">
<div class="flex items-center justify-between py-2 px-4 bg-gray-100 rounded-lg">
<span class="text-gray-500">软件版本</span>
<div class="font-medium">v{{ version }}</div>
</div>
<div class="flex items-center justify-between py-2 px-4 bg-gray-100 rounded-lg">
<span class="text-gray-500">开源地址</span>
<n-a href="https://github.com/lanyeeee/bilibili-video-downloader" target="_blank">GitHub</n-a>
</div>
<div class="flex items-center justify-between py-2 px-4 bg-gray-100 rounded-lg">
<span class="text-gray-500">问题反馈</span>
<n-a href="https://github.com/lanyeeee/bilibili-video-downloader/issues" target="_blank">GitHub Issues</n-a>
</div>
</div>
<div class="flex flex-col text-xs items-center text-gray-400">
<div>
Copyright © 2025
<n-a href="https://github.com/lanyeeee" target="_blank">lanyeeee</n-a>
</div>
<div>
Released under
<n-a href="https://github.com/lanyeeee/bilibili-video-downloader/blob/main/LICENSE" target="_blank">
MIT License
</n-a>
</div>
</div>
</div>
</n-dialog>
</n-modal>
</template>