page-404.vue 730 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="page-404 fvc">
  3. <div>
  4. <h4 class="title">当前页面不存在</h4>
  5. <router-link class="goback" to="/">返回首页</router-link>
  6. </div>
  7. </div>
  8. </template>
  9. <script lang="ts">
  10. import { defineComponent } from "vue";
  11. export default defineComponent({
  12. name: "page-404",
  13. })
  14. </script>
  15. <style >
  16. .page-404 {
  17. width: 100%;
  18. height: 100%;
  19. background-image: url("../../assets/images/page-404.png");
  20. background-size: cover;
  21. background-position: center center;
  22. text-align: center;
  23. color: #fff;
  24. }
  25. .title {
  26. font-size: 48px;
  27. font-weight: normal;
  28. margin-bottom: 16px;
  29. letter-spacing: 4px;
  30. line-height: 1;
  31. }
  32. .goback {
  33. font-size: 16px;
  34. text-decoration: underline;
  35. }
  36. </style>