mizzkey/src/client/pages/not-found.vue

30 lines
616 B
Vue
Raw Normal View History

2020-02-06 15:20:59 +01:00
<template>
2020-02-08 10:35:42 +01:00
<div class="ipledcug">
2020-08-22 02:12:15 +02:00
<teleport to="#_teleport_header"><fa :icon="faExclamationTriangle"/>{{ $t('notFound') }}</teleport>
2020-02-06 15:20:59 +01:00
2020-07-04 11:28:31 +02:00
<div class="_fullinfo">
<img src="https://xn--931a.moe/assets/not-found.jpg" class="_ghost"/>
2020-07-24 19:03:28 +02:00
<div>{{ $t('notFoundDescription') }}</div>
2020-07-04 11:28:31 +02:00
</div>
2020-02-06 15:20:59 +01:00
</div>
</template>
<script lang="ts">
2020-07-23 20:15:32 +02:00
import { defineComponent } from 'vue';
2020-02-06 15:20:59 +01:00
import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons';
2020-07-23 20:15:32 +02:00
export default defineComponent({
2020-02-06 15:20:59 +01:00
metaInfo() {
return {
title: this.$t('notFound') as string
};
},
data() {
return {
faExclamationTriangle
}
},
});
</script>