You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
363 B

  1. <template>
  2. <view class="blank-page">
  3. <text class="tip">这是一个空白页</text>
  4. </view>
  5. </template>
  6. <script setup>
  7. // 空白页,无逻辑
  8. </script>
  9. <style scoped>
  10. .blank-page {
  11. display: flex;
  12. align-items: center;
  13. justify-content: center;
  14. height: 100vh;
  15. background-color: #ffffff;
  16. }
  17. .tip {
  18. color: #999999;
  19. font-size: 28rpx;
  20. }
  21. </style>