fantasia-archive/src/pages/Error404.vue
2021-04-29 03:44:29 +02:00

31 lines
605 B
Vue

<template>
<div class="fullscreen bg-blue text-white text-center q-pa-md flex flex-center">
<div>
<div style="font-size: 30vh;">
404
</div>
<div class="text-h2" style="opacity: 0.4;">
Oops. Nothing here...
</div>
<q-btn
class="q-mt-xl"
color="white"
text-color="blue"
unelevated
to="/"
label="Go Home"
no-capsw
/>
</div>
</div>
</template>
<script lang="ts">
import { Vue, Component } from "vue-property-decorator"
@Component
export default class Error404 extends Vue {}
</script>