feat: 添加我的发行申请页面及相关组件,更新路由和国际化支持

This commit is contained in:
2025-12-21 21:19:46 +07:00
parent 2e4d7143e5
commit 00f27bf50a
15 changed files with 466 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
<script lang='ts' setup>
const { t } = useI18n();
</script>
<template>
<IonPage>
<IonContent :fullscreen="true" class="ion-padding">
<ion-router-outlet />
</IonContent>
</IonPage>
</template>
<style lang='css' scoped></style>