feat: optimize router logic

This commit is contained in:
2026-01-29 20:57:04 +08:00
parent 15885463d3
commit 110aec7d5f
7 changed files with 35 additions and 184 deletions

18
src/pages/index.vue Normal file
View File

@@ -0,0 +1,18 @@
<script lang="ts" setup>
// Home page component
</script>
<template>
<div class="hero min-h-screen bg-base-200">
<div class="hero-content text-center">
<div class="max-w-md">
<h1 class="text-5xl font-bold">Hucky</h1>
<p class="py-6">自动路由系统已加载</p>
</div>
</div>
</div>
</template>
<style scoped>
/* Component styles */
</style>