index.vue 749 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view class="mine-container">
  3. <view class="placeholder">
  4. <text class="icon">👤</text>
  5. <text class="text">我的页</text>
  6. <text class="subtext">功能开发中...</text>
  7. </view>
  8. </view>
  9. </template>
  10. <script setup>
  11. import { ref } from 'vue'
  12. </script>
  13. <style lang="scss" scoped>
  14. .mine-container {
  15. min-height: 100vh;
  16. background: #f5f6f8;
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. .placeholder {
  21. text-align: center;
  22. .icon {
  23. font-size: 120rpx;
  24. display: block;
  25. margin-bottom: 24rpx;
  26. }
  27. .text {
  28. font-size: 36rpx;
  29. color: #333333;
  30. font-weight: 600;
  31. display: block;
  32. margin-bottom: 12rpx;
  33. }
  34. .subtext {
  35. font-size: 26rpx;
  36. color: #999999;
  37. }
  38. }
  39. }
  40. </style>