init proj

This commit is contained in:
xsl
2026-03-11 17:45:38 +08:00
commit 4f250501c7
8 changed files with 237 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<template>
<view>
<image class="logo" src="/static/logo.png"></image>
<text class="title">{{title}}</text>
</view>
</template>
<script setup lang="uts">
const title = ref('Hello')
</script>
<style>
.logo {
height: 100px;
width: 100px;
margin: 100px auto 25px auto;
}
.title {
font-size: 18px;
color: #8f8f94;
text-align: center;
}
</style>