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

2
components.d.ts vendored
View File

@@ -12,6 +12,7 @@ export {}
/* prettier-ignore */
declare module 'vue' {
export interface GlobalComponents {
BackButton: typeof import('./src/components/back-button.vue')['default']
IonApp: typeof import('@ionic/vue')['IonApp']
IonButton: typeof import('@ionic/vue')['IonButton']
IonContent: typeof import('@ionic/vue')['IonContent']
@@ -33,6 +34,7 @@ declare module 'vue' {
// For TSX support
declare global {
const BackButton: typeof import('./src/components/back-button.vue')['default']
const IonApp: typeof import('@ionic/vue')['IonApp']
const IonButton: typeof import('@ionic/vue')['IonButton']
const IonContent: typeof import('@ionic/vue')['IonContent']