<template>
<view class="content">
<image class="logo" src="/static/logo.png"></image>
<view class="text-area">
<!-- #ifdef VUE3 -->
<view class="">
在vue3下面字体展示效果
</view>
<input type="text" />
<!-- #endif -->
<!-- #ifdef VUE2 -->
<view class="">
在vue2下面字体展示效果
</view>
<!-- #endif -->
<text class="title">Hello</text>
<text class="title">你好</text>
<text class="title">1234567890</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {
},
methods: {
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
flex-direction: column;
justify-content: center;
font-size: 26px;
}
.title {
font-size: 26px;
color: #8f8f94;
}
</style>