| 1234567891011121314151617181920212223 |
- <template>
- <div class="h5-about">
- <h1>关于(H5)</h1>
- </div>
- </template>
- <script setup>
- definePageMeta({
- layout: 'mobile'
- })
- </script>
- <style scoped lang="scss">
- .h5-about {
- color: #fff;
- text-align: center;
- padding-top: 40px;
- h1 {
- font-size: 32px;
- }
- }
- </style>
|