about.vue 254 B

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