时空网前端
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.

58 lines
695 B

5 years ago
  1. <template>
  2. <view class="content">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. title: 'Hello'
  10. }
  11. },
  12. onLoad() {
  13. },
  14. methods: {
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .content {
  20. display: flex;
  21. flex-direction: column;
  22. align-items: center;
  23. justify-content: center;
  24. padding: 40rpx;
  25. }
  26. .logo {
  27. height: 200rpx;
  28. width: 200rpx;
  29. margin-top: 100rpx;
  30. margin-left: auto;
  31. margin-right: auto;
  32. margin-bottom: 50rpx;
  33. }
  34. .text-area {
  35. display: flex;
  36. justify-content: center;
  37. }
  38. .title {
  39. font-size: 28rpx;
  40. color: $u-content-color;
  41. }
  42. .button-demo {
  43. margin-top: 80rpx;
  44. }
  45. .link-demo {
  46. margin-top: 80rpx;
  47. }
  48. </style>