404.vue 291 B

1234567891011121314151617181920
  1. <template>
  2. <div class="noFound">
  3. 请在手机端使用微信浏览器打开
  4. </div>
  5. </template>
  6. <script setup lang="ts">
  7. </script>
  8. <style scoped>
  9. .noFound {
  10. width: 100vw;
  11. height: 100vh;
  12. box-sizing: border-box;
  13. padding-top: 20vh;
  14. display: flex;
  15. justify-content: center;
  16. }
  17. </style>