summaryrefslogtreecommitdiff
path: root/packages/client/src/pages/not-found.vue
blob: 92d3f399f76c86bd95dc883ae0fac8affabcfdda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
<div class="ipledcug">
	<div class="_fullinfo">
		<img src="https://xn--931a.moe/assets/not-found.jpg" class="_ghost"/>
		<div>{{ $ts.notFoundDescription }}</div>
	</div>
</div>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import * as os from '@/os';
import * as symbols from '@/symbols';

export default defineComponent({
	data() {
		return {
			[symbols.PAGE_INFO]: {
				title: this.$ts.notFound,
				icon: 'fas fa-exclamation-triangle'
			},
		}
	},
});
</script>