Files
GPW/TestQuasar/src/pages/Error404.vue
T
2019-09-27 23:38:18 +02:00

24 lines
420 B
Vue

<template>
<div class="fixed-center text-center">
<p>
<img
src="~assets/sad.svg"
style="width:30vw;max-width:150px;"
>
</p>
<p class="text-faded">Sorry, nothing here...<strong>(404)</strong></p>
<q-btn
color="secondary"
style="width:200px;"
to="/"
label="Go back"
/>
</div>
</template>
<script>
export default {
name: 'Error404'
}
</script>