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
kolaente 7d596a08cd
All checks were successful
continuous-integration/drone/pr Build is passing
Add page titles everywhere
2020-07-07 21:59:35 +02:00

16 lines
240 B
Vue

<template>
<div class="content has-text-centered">
<h1>Not found</h1>
<p>The page you requested does not exist.</p>
</div>
</template>
<script>
export default {
name: '404',
mounted() {
this.setTitle('404')
},
}
</script>