404.vue 234 B

1234567891011121314151617
  1. <template>
  2. <h3><strong>404</strong>&nbsp;Not Found</h3>
  3. </template>
  4. <style type="scss" scoped>
  5. * {
  6. margin: 0;
  7. padding: 0;
  8. }
  9. h3 {
  10. height: 100vh;
  11. display: flex;
  12. align-items: center;
  13. justify-content: center;
  14. }
  15. </style>