feat: scaffold infrastructure - router, pinia, tailwind, amap, auth store, page placeholders

This commit is contained in:
2026-05-20 23:31:55 +08:00
parent eb183448b4
commit c49ac7a42e
29 changed files with 1624 additions and 432 deletions
+7 -2
View File
@@ -1,7 +1,12 @@
<script setup lang="ts">
import HelloWorld from './components/HelloWorld.vue'
import AppHeader from '@/components/layout/AppHeader.vue'
</script>
<template>
<HelloWorld />
<div class="min-h-screen bg-gray-50 flex flex-col">
<AppHeader />
<main class="flex-1">
<RouterView />
</main>
</div>
</template>