bd843863d0
* 非ログイン時にクレデンシャルが必要なページに行くとエラーが出る問題を修正 (misskey-dev/misskey#10922) * Update CHANGELOG.md * fix * Update CHANGELOG.md * Update CHANGELOG.md
32 lines
674 B
Vue
32 lines
674 B
Vue
<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';
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
import { pleaseLogin } from '@/scripts/please-login';
|
|
import { notFoundImageUrl } from '@/instance';
|
|
|
|
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>
|