404.vue 394 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="wrapper">
  3. <h3><strong>404</strong>&nbsp;Not Found</h3>
  4. <router-link class="button is-black" to="/">
  5. Back to Home
  6. </router-link>
  7. </div>
  8. </template>
  9. <style lang="scss" scoped>
  10. * {
  11. margin: 0;
  12. padding: 0;
  13. }
  14. .wrapper {
  15. height: 100vh;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. flex-direction: column;
  20. }
  21. a {
  22. margin-top: 15px;
  23. }
  24. </style>