1234567891011121314151617181920 |
- <template>
- <div class="noFound">
- 请在手机端使用微信浏览器打开
- </div>
- </template>
- <script setup lang="ts">
- </script>
- <style scoped>
- .noFound {
- width: 100vw;
- height: 100vh;
- box-sizing: border-box;
- padding-top: 20vh;
- display: flex;
- justify-content: center;
- }
- </style>
|