feat: basic framework

This commit is contained in:
wuyugu
2025-08-01 17:52:35 +08:00
commit 1b2dafb654
24 changed files with 1068 additions and 0 deletions

18
src/pages/HomePage.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">首页</h1>
<p class="py-6">欢迎使用自动路由系统</p>
</div>
</div>
</div>
</template>
<style scoped>
/* Component styles */
</style>