2020-02-06 16:20:59 +02:00
|
|
|
<template>
|
2020-02-08 11:35:42 +02:00
|
|
|
<div class="ipledcug">
|
2020-07-04 12:28:31 +03:00
|
|
|
<div class="_fullinfo">
|
|
|
|
<img src="https://xn--931a.moe/assets/not-found.jpg" class="_ghost"/>
|
2020-12-26 03:47:36 +02:00
|
|
|
<div>{{ $ts.notFoundDescription }}</div>
|
2020-07-04 12:28:31 +03:00
|
|
|
</div>
|
2020-02-06 16:20:59 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-07 09:48:51 +02:00
|
|
|
<script lang="ts" setup>
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as symbols from '@/symbols';
|
2022-01-07 09:48:51 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2020-02-06 16:20:59 +02:00
|
|
|
|
2022-01-07 09:48:51 +02:00
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: {
|
2022-01-28 04:39:49 +02:00
|
|
|
title: i18n.ts.notFound,
|
2022-01-07 09:48:51 +02:00
|
|
|
icon: 'fas fa-exclamation-triangle',
|
|
|
|
bg: 'var(--bg)',
|
2020-02-06 16:20:59 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|