This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/views/404.vue
konrad f0498fd767
All checks were successful
continuous-integration/drone/push Build is passing
Add translations (#562)
Reviewed-on: #562
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-06-23 23:24:57 +00:00

16 lines
228 B
Vue

<template>
<div class="content has-text-centered">
<h1>{{ $t('404.title') }}</h1>
<p>{{ $t('404.text') }}</p>
</div>
</template>
<script>
export default {
name: '404',
mounted() {
this.setTitle('404')
},
}
</script>