初步构建起页面布局

This commit is contained in:
2026-01-23 17:55:26 +08:00
parent 2b0ee0c8b6
commit b6ad549737
37 changed files with 13405 additions and 5385 deletions

29
pages/minimal.uvue Normal file
View File

@@ -0,0 +1,29 @@
<template>
<view class="container">
<text class="title">Minimal Test Page</text>
<text class="content">This is a minimal test page to check if uni-app-x compilation works.</text>
</view>
</template>
<script setup lang="uts">
// Minimal script
</script>
<style>
.container {
padding: 40rpx;
text-align: center;
}
.title {
font-size: 48rpx;
font-weight: bold;
color: #333;
margin-bottom: 20rpx;
}
.content {
font-size: 28rpx;
color: #666;
}
</style>