sharkey/packages/client/src/pages/not-found.vue

22 lines
439 B
Vue
Raw Normal View History

2020-02-06 23:20:59 +09:00
<template>
2020-02-08 18:35:42 +09:00
<div class="ipledcug">
2020-07-04 18:28:31 +09:00
<div class="_fullinfo">
<img src="https://xn--931a.moe/assets/not-found.jpg" class="_ghost"/>
2020-12-26 10:47:36 +09:00
<div>{{ $ts.notFoundDescription }}</div>
2020-07-04 18:28:31 +09:00
</div>
2020-02-06 23:20:59 +09:00
</div>
</template>
2022-01-07 16:48:51 +09:00
<script lang="ts" setup>
2021-11-12 02:02:25 +09:00
import * as symbols from '@/symbols';
2022-01-07 16:48:51 +09:00
import { i18n } from '@/i18n';
2020-02-06 23:20:59 +09:00
2022-01-07 16:48:51 +09:00
defineExpose({
[symbols.PAGE_INFO]: {
title: i18n.ts.notFound,
2022-01-07 16:48:51 +09:00
icon: 'fas fa-exclamation-triangle',
bg: 'var(--bg)',
2020-02-06 23:20:59 +09:00
},
});
</script>