index.vue 700 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="content">
  3. <image class="logo" src="/static/logo.png"></image>
  4. <view class="text-area">
  5. <text class="title">{{title}}6666</text>
  6. <uni-icons type="contact" size="30"></uni-icons>
  7. </view>
  8. </view>
  9. </template>
  10. <script setup>
  11. import { ref } from 'vue';
  12. let title = ref('Hello')
  13. </script>
  14. <style>
  15. .content {
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. justify-content: center;
  20. }
  21. .logo {
  22. height: 200rpx;
  23. width: 200rpx;
  24. margin-top: 200rpx;
  25. margin-left: auto;
  26. margin-right: auto;
  27. margin-bottom: 50rpx;
  28. }
  29. .text-area {
  30. display: flex;
  31. justify-content: center;
  32. }
  33. .title {
  34. font-size: 36rpx;
  35. color: #8f8f94;
  36. }
  37. </style>