egirlskey/packages/frontend/src/pages/not-found.vue

23 lines
502 B
Vue
Raw Normal View History

2020-02-06 14:20:59 +00:00
<template>
2020-02-08 09:35:42 +00:00
<div class="ipledcug">
2020-07-04 09:28:31 +00:00
<div class="_fullinfo">
<img src="https://xn--931a.moe/assets/not-found.jpg" class="_ghost"/>
2022-07-20 13:24:26 +00:00
<div>{{ i18n.ts.notFoundDescription }}</div>
2020-07-04 09:28:31 +00:00
</div>
2020-02-06 14:20:59 +00:00
</div>
</template>
2022-01-07 07:48:51 +00:00
<script lang="ts" setup>
import { i18n } from '@/i18n';
import { definePageMetadata } from '@/scripts/page-metadata';
2020-02-06 14:20:59 +00:00
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata({
title: i18n.ts.notFound,
icon: 'ti ti-alert-triangle',
2020-02-06 14:20:59 +00:00
});
</script>