Signed-off-by: 吴文峰 <kevin@lmve.net>

This commit is contained in:
2026-04-16 20:36:03 +08:00
commit 3bb51d0794
29 changed files with 1063 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<template>
<view class="container">
<text class="placeholder">主页</text>
</view>
</template>
<script setup>
</script>
<style scoped>
.container {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
background-color: #f5f5f5;
}
.placeholder {
font-size: 32rpx;
color: #999;
}
</style>