feat: 添加后退按钮组件并更新认证路由和视图

This commit is contained in:
2026-01-16 13:20:59 +07:00
parent fb89d3adf7
commit c74a3dd930
7 changed files with 139 additions and 3 deletions

22
src/views/auth/login.vue Normal file
View File

@@ -0,0 +1,22 @@
<script lang='ts' setup>
</script>
<template>
<ion-page>
<ion-header class="ion-no-border">
<ion-toolbar class="ion-toolbar">
<back-button slot="start" />
<ion-title>登录</ion-title>
</ion-toolbar>
</ion-header>
<ion-content :fullscreen="true" class="ion-padding">
<div class="max-w-md mx-auto flex flex-col gap-6">
<!-- 登录表单内容省略 -->
</div>
</ion-content>
</ion-page>
</template>
<style lang='css' scoped></style>