mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 15:33:09 +02:00
37 lines
797 B
Vue
37 lines
797 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
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 { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { pleaseLogin } from '@/scripts/please-login.js';
|
|
import { notFoundImageUrl } from '@/instance.js';
|
|
|
|
const props = defineProps<{
|
|
showLoginPopup?: boolean;
|
|
}>();
|
|
|
|
if (props.showLoginPopup) {
|
|
pleaseLogin('/');
|
|
}
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.notFound,
|
|
icon: 'ti ti-alert-triangle',
|
|
});
|
|
</script>
|