show-time.vue
351 字节
<template>
<!-- 2019/05/02 18:00 时间暂定 -->
<view class="show-time"></view>
</template>
<script setup>
import { onLoad } from '@dcloudio/uni-app'
onLoad(() => {
})
</script>
<style lang="scss">
.show-time {
margin: 32rpx 0;
color: #666573ff;
font-size: 20rpx;
text-align: center;
font-weight: 700;
}
</style>