mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-28 16:06:40 +01:00
19 lines
354 B
Vue
19 lines
354 B
Vue
<template>
|
|
<div class="hero is-halfheight">
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered">
|
|
<h1 class="title">
|
|
Oops,
|
|
<small class="subtitle">this page doesn't exist</small>
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "PageNotFound",
|
|
};
|
|
</script>
|