temp.vue 875 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div class="main">
  3. <img class="img" src="@/assets/images/global/temp.png" />
  4. <div class="text">敬请期待</div>
  5. <div class="text2">程序员正在开发建设中</div>
  6. </div>
  7. </template>
  8. <script lang="ts">
  9. import { defineComponent } from 'vue'
  10. export default defineComponent({
  11. name: '',
  12. components: {},
  13. setup() {
  14. return {}
  15. }
  16. })
  17. </script>
  18. <style scoped lang="scss">
  19. .main {
  20. display: flex;
  21. flex-direction: column;
  22. align-items: center;
  23. justify-content: center;
  24. width: 100%;
  25. height: 100%;
  26. .text {
  27. font-family: MicrosoftYaHei;
  28. font-size: 18px;
  29. font-weight: normal;
  30. font-stretch: normal;
  31. letter-spacing: 0px;
  32. color: #409eff;
  33. }
  34. .text2 {
  35. font-family: MicrosoftYaHei;
  36. font-size: 14px;
  37. font-weight: normal;
  38. font-stretch: normal;
  39. letter-spacing: 0px;
  40. color: #999999;
  41. }
  42. }
  43. </style>