ErrorNotFound.vue 576 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div class="fullscreen bg-blue text-white text-center q-pa-md flex flex-center">
  3. <div>
  4. <div style="font-size: 30vh">
  5. 404
  6. </div>
  7. <div class="text-h2" style="opacity:.4">
  8. Oops. Nothing here...
  9. </div>
  10. <q-btn
  11. class="q-mt-xl"
  12. color="white"
  13. text-color="blue"
  14. unelevated
  15. to="/"
  16. label="Go Home"
  17. no-caps
  18. />
  19. </div>
  20. </div>
  21. </template>
  22. <script>
  23. import { defineComponent } from 'vue'
  24. export default defineComponent({
  25. name: 'ErrorNotFound'
  26. })
  27. </script>