salix-front/src/pages/ErrorNotFound.vue

20 lines
519 B
Vue
Raw Normal View History

2022-03-24 12:33:14 +00:00
<template>
2022-03-24 13:57:11 +00:00
<div class="fullscreen bg-blue text-white text-center q-pa-md flex flex-center">
<div>
<div style="font-size: 30vh">404</div>
2022-03-24 12:33:14 +00:00
2022-03-24 13:57:11 +00:00
<div class="text-h2" style="opacity: 0.4">Oops. Nothing here...</div>
2022-03-24 12:33:14 +00:00
2022-03-24 13:57:11 +00:00
<q-btn class="q-mt-xl" color="white" text-color="blue" unelevated to="/" label="Go Home" no-caps />
</div>
2022-03-24 12:33:14 +00:00
</div>
</template>
<script>
2022-03-24 13:57:11 +00:00
import { defineComponent } from 'vue';
2022-03-24 12:33:14 +00:00
export default defineComponent({
2022-03-24 13:57:11 +00:00
name: 'ErrorNotFound',
});
2022-03-24 12:33:14 +00:00
</script>