123456789101112131415161718192021222324252627282930 |
- <template>
- <Container title="首页" :showBack="false">
- <view class="home">
- <view class="time">
- <view>倒计时</view>
- <view>151天</view>
- </view>
- </view>
- </Container>
- </template>
- <script setup lang="ts">
- import Container from "../../components/Container/Container.vue";
- </script>
- <style scoped lang="scss">
- .home {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 20rpx;
- .time {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 80rpx;
- }
- }
- </style>
|