35 lines
735 B
Vue
35 lines
735 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div style="align-content: center; height: 100cqh;">
|
|
<MkResult type="notFound" :text="i18n.ts.notFoundDescription"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed } from 'vue';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePage } from '@/page.js';
|
|
import { pleaseLogin } from '@/utility/please-login.js';
|
|
|
|
const props = defineProps<{
|
|
showLoginPopup?: boolean;
|
|
}>();
|
|
|
|
if (props.showLoginPopup) {
|
|
pleaseLogin({ path: '/' });
|
|
}
|
|
|
|
const headerActions = computed(() => []);
|
|
|
|
const headerTabs = computed(() => []);
|
|
|
|
definePage(() => ({
|
|
title: i18n.ts.notFound,
|
|
icon: 'ti ti-alert-triangle',
|
|
}));
|
|
</script>
|