summaryrefslogtreecommitdiff
path: root/src/client/pages/_error_.vue
blob: c2497c17b3d04bb1d1b317d5009947deda75f2a2 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<template>
<transition :name="$store.state.device.animation ? 'zoom' : ''" appear>
	<div class="_section">
		<div class="mjndxjch _content">
			<img src="https://xn--931a.moe/assets/error.jpg" class="_ghost"/>
			<p><Fa :icon="faExclamationTriangle"/> {{ $t('pageLoadError') }}</p>
			<p>{{ $t('pageLoadErrorDescription') }}</p>
		</div>
	</div>
</transition>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons';
import MkButton from '@/components/ui/button.vue';

export default defineComponent({
	components: {
		MkButton,
	},
	data() {
		return {
			INFO: {
				header: [{
					title: this.$t('error'),
					icon: faExclamationTriangle
				}]
			},
			faExclamationTriangle
		};
	},
});
</script>

<style lang="scss" scoped>
.mjndxjch {
	text-align: center;

	> p {
		margin: 0 0 8px 0;
	}

	> .button {
		margin: 0 auto;
	}

	> img {
		vertical-align: bottom;
		height: 128px;
		margin-bottom: 16px;
		border-radius: 16px;
	}
}
</style>