💻 | Working on error page

This commit is contained in:
2021-04-07 22:18:22 +02:00
parent 08599b09d1
commit db71e07aca

View File

@@ -28,14 +28,14 @@
</div> </div>
</div> </div>
<div> <div>
<nuxt-link class="home-btn" to="/"> <div class="home-btn" @click="next">
<div class="w-full py-4 px-8 md:py-8 md:px-16 font-bold hover:bg-red-500 duration-500 rounded"> <div class="w-full py-4 px-8 md:py-8 md:px-16 font-bold hover:bg-red-500 duration-500 rounded">
{{ $t('error.back') }} {{ $t('error.back') }}
<svg class="inline arrow-img" height="32" width="32" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> <svg class="inline arrow-img" height="32" width="32" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3" />
</svg> </svg>
</div> </div>
</nuxt-link> </div>
</div> </div>
</div> </div>
</div> </div>
@@ -43,11 +43,19 @@
</template> </template>
<script> <script>
import {useRouter} from "@nuxtjs/composition-api";
export default { export default {
name: "error", name: "error",
props: ['error'], props: ['error'],
head: { head: {
title: 'Error - Arthur Danjou' title: 'Error - Arthur Danjou'
},
setup() {
const router = useRouter()
const next = () => router.back()
return {next}
} }
} }
</script> </script>