From da6a29c5ac78dcbcf6225bfcd7f25f33c1306aff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=9B=AE=E6=A3=83?= Date: Mon, 31 Mar 2025 15:33:15 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20=E6=8F=90=E4=BE=9BYae=E5=85=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/common/PageAchi.vue | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/pages/common/PageAchi.vue b/src/pages/common/PageAchi.vue index 1d5572ec..7d04b546 100644 --- a/src/pages/common/PageAchi.vue +++ b/src/pages/common/PageAchi.vue @@ -43,6 +43,9 @@ 隐藏已完成 +
@@ -78,6 +81,7 @@ import { path } from "@tauri-apps/api"; import { listen, type UnlistenFn } from "@tauri-apps/api/event"; import { open, save } from "@tauri-apps/plugin-dialog"; import { writeTextFile } from "@tauri-apps/plugin-fs"; +import { openUrl } from "@tauri-apps/plugin-opener"; import { computed, onMounted, onUnmounted, ref, shallowRef, watch } from "vue"; import { useRoute, useRouter } from "vue-router"; @@ -274,6 +278,10 @@ async function deleteUid(): Promise { uidCur.value = uidList.value[0]; } +async function toYae(): Promise { + await openUrl("https://github.com/HolographicHat/Yae"); +} + onUnmounted(async () => { if (achiListener !== null) { achiListener(); @@ -341,6 +349,17 @@ onUnmounted(async () => { font-family: var(--font-title); } +.top-link { + margin-left: auto; + margin-right: 16px; + cursor: pointer; + color: var(--tgc-od-white); + + &:hover { + color: var(--tgc-od-orange); + } +} + .wrap { display: flex; height: calc(100vh - 144px);