mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 22:03:08 +02:00
26 lines
584 B
Vue
26 lines
584 B
Vue
<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 { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons';
|
|
import * as os from '@client/os';
|
|
import * as symbols from '@client/symbols';
|
|
|
|
export default defineComponent({
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: {
|
|
title: this.$ts.notFound,
|
|
icon: faExclamationTriangle
|
|
},
|
|
}
|
|
},
|
|
});
|
|
</script>
|