Files
misskey/src/client/pages/not-found.vue
syuilo 598e39a1f3 wip
2020-08-25 09:03:52 +09:00

30 lines
601 B
Vue

<template>
<div class="ipledcug">
<portal to="header"><fa :icon="faExclamationTriangle"/>{{ $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 { defineComponent } from 'vue';
import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons';
export default defineComponent({
metaInfo() {
return {
title: this.$t('notFound') as string
};
},
data() {
return {
faExclamationTriangle
}
},
});
</script>