2022-04-05 17:40:35 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-04-15 23:10:47 +02:00
|
|
|
<div class="e404-wrapper">
|
|
|
|
<n-result
|
|
|
|
status="404"
|
|
|
|
title="404 Not Found"
|
|
|
|
description="Sorry, this page does not seem to extist"
|
|
|
|
>
|
|
|
|
<template #footer>
|
|
|
|
<router-link
|
|
|
|
to="/"
|
|
|
|
#="{ navigate, href }"
|
|
|
|
custom
|
2022-04-05 17:40:35 +02:00
|
|
|
>
|
2022-04-15 23:10:47 +02:00
|
|
|
<n-button
|
|
|
|
tag="a"
|
|
|
|
:href="href"
|
|
|
|
secondary
|
|
|
|
type="success"
|
|
|
|
@click="navigate"
|
|
|
|
>
|
|
|
|
Back home
|
|
|
|
</n-button>
|
|
|
|
</router-link>
|
|
|
|
</template>
|
|
|
|
</n-result>
|
|
|
|
</div>
|
2022-04-05 17:40:35 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.e404-wrapper {
|
|
|
|
padding-top: 150px;
|
|
|
|
}
|
|
|
|
</style>
|