初步构建起页面布局

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

16
pages/test-minimal.uvue Normal file
View File

@@ -0,0 +1,16 @@
<template>
<view class="test">
<text>Hello World</text>
</view>
</template>
<script setup lang="uts">
// Minimal test
</script>
<style>
.test {
padding: 20px;
text-align: center;
}
</style>