notFound.vue 503 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div class="notFound-wrap">
  3. 404,
  4. <span
  5. class="click"
  6. @click="router.push('/')"
  7. >
  8. 点我
  9. </span>
  10. 回首页
  11. </div>
  12. </template>
  13. <script lang="ts" setup>
  14. import router from '@/router';
  15. </script>
  16. <style lang="scss" scoped>
  17. .notFound-wrap {
  18. position: absolute;
  19. top: 50%;
  20. left: 50%;
  21. font-size: 30px;
  22. transform: translate(-50%, -50%);
  23. .click {
  24. color: $theme-color-gold;
  25. text-decoration: underline;
  26. cursor: pointer;
  27. }
  28. }
  29. </style>