Files
jinshen-website/app/pages/locate.vue
R2m1liA 6f005c1404
Some checks failed
deploy to server / build-and-deploy (push) Has been cancelled
fix: 调整地图跳转逻辑
- 新增locate页,用于地图跳转
- 调整about页卡片布局
2025-11-18 17:03:40 +08:00

13 lines
247 B
Vue

<template>
<div>redirecting...</div>
</template>
<script setup lang="ts">
onMounted(async () => {
const platform = await getAutoMappedService();
// // ✔ 移动端能正常跳转
window.location.href = platform;
});
</script>