mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-13 00:51:04 -07:00
0089260392
This reverts commit 9c30b23358699a530f2bcb0f5ae6efe17146bcb3.
30 lines
608 B
Vue
30 lines
608 B
Vue
<template>
|
|
<div class="ipledcug">
|
|
<portal to="icon"><fa :icon="faExclamationTriangle"/></portal>
|
|
<portal to="title">{{ $t('notFound') }}</portal>
|
|
|
|
<div class="_fullinfo">
|
|
<img src="https://xn--931a.moe/assets/not-found.jpg" class="_ghost"/>
|
|
<div>{{ $t('notFoundDescription') }}</div>
|
|
</div>
|
|
</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>
|