Files
Kg.SeaTime/Web/src/pages/customer/cooperation.vue
2026-05-18 13:28:20 +08:00

27 lines
511 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div>
<div class="content">
<Abar href="/">首页</Abar>&gt;合作
</div>
<div class="content">
商务合作请联系<br />
客服QQ290555931
</div>
<Abar href="/">返回游戏首页</Abar>
</div>
</template>
<script setup lang="ts">
definePageMeta({
layout: layout.empty,
middleware: middleware.loading
})
onMounted(() => {
PageLoading.Close();
})
</script>
<style lang="scss" scoped></style>