ErrorNotFound.vue 605 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div
  3. class="fullscreen bg-blue text-white text-center q-pa-md flex flex-center"
  4. >
  5. <div>
  6. <!-- eslint-disable-next-line @intlify/vue-i18n/no-raw-text -->
  7. <div style="font-size: 30vh">{{ "404" }}</div>
  8. <div class="text-h2" style="opacity: 0.4">
  9. {{ $t("http.errors.404") }}
  10. </div>
  11. <q-btn
  12. class="q-mt-xl"
  13. color="white"
  14. text-color="blue"
  15. unelevated
  16. to="/"
  17. label="Go Home"
  18. no-caps
  19. />
  20. </div>
  21. </div>
  22. </template>
  23. <script setup>
  24. defineOptions({
  25. name: "ErrorNotFound",
  26. });
  27. </script>