| 123456789101112131415161718192021222324252627282930 |
- <template>
- <div
- class="fullscreen bg-blue text-white text-center q-pa-md flex flex-center"
- >
- <div>
- <!-- eslint-disable-next-line @intlify/vue-i18n/no-raw-text -->
- <div style="font-size: 30vh">{{ "404" }}</div>
- <div class="text-h2" style="opacity: 0.4">
- {{ $t("http.errors.404") }}
- </div>
- <q-btn
- class="q-mt-xl"
- color="white"
- text-color="blue"
- unelevated
- to="/"
- label="Go Home"
- no-caps
- />
- </div>
- </div>
- </template>
- <script setup>
- defineOptions({
- name: "ErrorNotFound",
- });
- </script>
|