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

19
src/pages/AboutPage.vue Normal file
View File

@@ -0,0 +1,19 @@
<script lang="ts" setup>
// About 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>
<p>路径将自动转换为 /about</p>
</div>
</div>
</div>
</template>
<style scoped>
/* Component styles */
</style>