0
0
Fork 0
salix-front-mindshore-fork2/src/pages/NotFound.vue

42 lines
970 B
Vue
Raw Normal View History

<script setup>
import { useI18n } from 'vue-i18n';
import { useRouter } from 'vue-router';
const router = useRouter();
const { t } = useI18n();
</script>
2022-03-24 12:33:14 +00:00
<template>
<div class="text-center q-pa-md flex flex-center">
2022-03-24 13:57:11 +00:00
<div>
<div class="text-grey-5" style="opacity: 0.4; font-size: 30vh">
2023-04-11 11:31:03 +00:00
<QIcon name="vn:claims" />
</div>
2022-03-24 12:33:14 +00:00
2023-04-11 11:31:03 +00:00
<div class="text-h2 text-grey-5" style="opacity: 0.4">
{{ t('notFound') }}
</div>
2022-03-24 12:33:14 +00:00
2023-04-11 11:31:03 +00:00
<QBtn
@click="router.go(-1)"
:label="t('globals.back')"
2022-03-24 15:49:33 +00:00
class="q-mt-xl"
color="primary"
2022-03-24 15:49:33 +00:00
unelevated
outline
2022-03-24 15:49:33 +00:00
no-caps
/>
2022-03-24 13:57:11 +00:00
</div>
2022-03-24 12:33:14 +00:00
</div>
</template>
<style lang="scss" scoped></style>
<i18n>
{
2022-11-18 10:23:40 +00:00
"en": {
"notFound": "Oops. Nothing here..."
},
2022-11-18 10:23:40 +00:00
"es": {
"notFound": "Vaya. Nada por aquí..."
}
}
</i18n>