404.vue 305 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="http-404">
  3. <h1>404</h1>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'Page404'
  9. };
  10. </script>
  11. <style lang="scss">
  12. .http-404 {
  13. position: absolute;
  14. top: 40%;
  15. left: 50%;
  16. font-size: 32px;
  17. color: rgb(0, 174, 255);
  18. transform: translate(-50%, -50%);
  19. }
  20. </style>