404.vue 413 B

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