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

31 lines
602 B
Vue
Raw Normal View History

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