diff --git a/src/pages/Home/components/DownloadButton.vue b/src/pages/Home/components/DownloadButton.vue
index cb17da1..269ad32 100644
--- a/src/pages/Home/components/DownloadButton.vue
+++ b/src/pages/Home/components/DownloadButton.vue
@@ -27,6 +27,16 @@
+
+ 没有海外Apple ID?
+
+
@@ -92,6 +102,11 @@ const FIXED_LINKS: Record = {
const isAndroid = computed(() => currentPlatform.value === 'android')
const isIOS = computed(() => currentPlatform.value === 'ios')
+const isApplePlatform = computed(() => currentPlatform.value === 'ios' || currentPlatform.value === 'mac')
+const helpLink = computed(() => {
+ const ic = getAllQueryString('ic') || 'uSSfgY6oAP'
+ return `https://hifastvpn.com/help?ic=${ic}`
+})
onMounted(() => {
const ua = navigator.userAgent;
@@ -202,4 +217,3 @@ const otherButtons = computed(() => {
return allDownloadOptions.value.filter(opt => opt.key !== currentPlatform.value)
})
-