about.vue 292 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="h5-about">
  3. <h1>关于(H5)</h1>
  4. </div>
  5. </template>
  6. <script setup>
  7. definePageMeta({
  8. layout: 'mobile'
  9. })
  10. </script>
  11. <style scoped lang="scss">
  12. .h5-about {
  13. color: #fff;
  14. text-align: center;
  15. padding-top: 40px;
  16. h1 {
  17. font-size: 32px;
  18. }
  19. }
  20. </style>