20 lines
407 B
Vue
20 lines
407 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div>
|
|
<div class="_fullinfo">
|
|
<img :src="notFoundImageUrl" class="_ghost"/>
|
|
<div>{{ i18n.ts.notFoundDescription }}</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import { i18n } from '@/i18n.js';
|
|
import { notFoundImageUrl } from '@/instance.js';
|
|
</script>
|