项目搭建

This commit is contained in:
kron
2025-04-10 11:11:46 +08:00
commit fcb7ef0f35
18 changed files with 4354 additions and 0 deletions

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

@@ -0,0 +1,18 @@
<script setup>
import AppFooter from '@/components/AppFooter.vue'
import InputEntry from '@/components/InputEntry.vue'
</script>
<template>
<view class="root-container">
<InputEntry />
<AppFooter />
</view>
</template>
<style scoped>
.root-container {
padding: 5rem 2.5rem;
text-align: center;
}
</style>