24 lines
388 B
Plaintext
24 lines
388 B
Plaintext
<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> |