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

16 lines
238 B
Vue
Raw Normal View History

2020-03-02 19:30:49 +00:00
<template>
<div class="content has-text-centered">
<h1>{{ $t('404.title') }}</h1>
<p>{{ $t('404.text') }}</p>
2020-03-02 19:30:49 +00:00
</div>
</template>
2022-02-15 12:07:34 +00:00
<script lang="ts">
export default {
name: '404',
mounted() {
this.setTitle('404')
},
}
2020-03-02 19:30:49 +00:00
</script>