mirror of
https://github.com/amir20/dozzle.git
synced 2026-01-02 19:17:37 +01:00
23 lines
462 B
Vue
23 lines
462 B
Vue
<template>
|
|
<div class="hero is-halfheight">
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered">
|
|
<h1 class="title">
|
|
404.
|
|
<small class="subtitle">This page does not exist.</small>
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { setTitle } from "@/composables/title";
|
|
export default {
|
|
name: "PageNotFound",
|
|
setup() {
|
|
setTitle("Page not found");
|
|
},
|
|
};
|
|
</script>
|