labswp_2019_sose_geocaching/frontend/src/pages/Error404.vue
2019-03-19 23:01:54 +01:00

18 lines
401 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;" @click="$router.push('/')"
>Go back</q-btn
>
</div>
</template>
<script>
export default {
name: "Error404"
};
</script>