Files
urbanLifeline/urbanLifelineWeb/packages/workcase_wechat/pages/index/index.uvue
2025-12-08 19:01:09 +08:00

37 lines
433 B
Plaintext

<template>
<view>
<image class="logo" src="/static/logo.png"></image>
<text class="title">{{title}}</text>
</view>
</template>
<script>
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
},
methods: {
}
}
</script>
<style>
.logo {
height: 100px;
width: 100px;
margin: 100px auto 25px auto;
}
.title {
font-size: 18px;
color: #8f8f94;
text-align: center;
}
</style>