about.vue 392 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="about-page">
  3. <h1>关于(PC)</h1>
  4. </div>
  5. </template>
  6. <script setup>
  7. definePageMeta({
  8. layout: 'pc'
  9. })
  10. </script>
  11. <style scoped lang="scss">
  12. .about-page {
  13. width: 100%;
  14. max-width: 1920px;
  15. margin: 0 auto;
  16. padding: 120px 20px 20px;
  17. min-height: calc(100vh - 200px);
  18. h1 {
  19. color: #fff;
  20. font-size: 48px;
  21. text-align: center;
  22. }
  23. }
  24. </style>