index.vue 553 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <Container title="首页" :showBack="false">
  3. <view class="home">
  4. <view class="time">
  5. <view>倒计时</view>
  6. <view>151天</view>
  7. </view>
  8. </view>
  9. </Container>
  10. </template>
  11. <script setup lang="ts">
  12. import Container from "../../components/Container/Container.vue";
  13. </script>
  14. <style scoped lang="scss">
  15. .home {
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. gap: 20rpx;
  20. .time {
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. gap: 80rpx;
  25. }
  26. }
  27. </style>