404.vue 402 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="not_found_box">
  3. <view class="not_found">404</view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. onLoad() {},
  9. methods: {
  10. back() {}
  11. }
  12. }
  13. </script>
  14. <style lang="scss">
  15. .not_found_box {
  16. width: 100%;
  17. height: 500px;
  18. display: flex;
  19. align-items: center;
  20. justify-content: center;
  21. .not_found {
  22. font-size: 32px;
  23. color: rgb(0, 174, 255);
  24. }
  25. }
  26. </style>