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

26 lines
554 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">
驰骋四海是2022年初自主设计的一款以大航海时代为背景的wap文字游戏希望给大家呈现一种不一样的怀旧场景
</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>