-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.vue
70 lines (66 loc) · 1.66 KB
/
error.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<script setup>
useHead({
titleTemplate: "Home - %s",
});
defineProps(["error"]);
const handleError = () => clearError({ redirect: "/" });
</script>
<template>
<div class="app-height">
<TheHeader />
<main>
<Head>
<Title> {{ error.statusCode }} - {{ error.message }} </Title>
<Meta name="description" content="Error Page" />
</Head>
<div class="container">
<div class="grid grid-cols-1">
<div class="error-content">
<h2>{{ error.statusCode }}</h2>
<p>{{ error.message }}</p>
<!-- Clear the errors and redirect back to see bellow -->
<CarButton class="car-button error" @click="handleError()">
<svg
xmlns="http://www.w3.org/2000/svg"
width="18"
height="18"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="w-6 h-6"
>
<circle cx="12" cy="12" r="10" />
<path d="M16 12H8" />
<path d="m12 8-4 4 4 4" /></svg
> Go Back</CarButton
>
</div>
</div>
</div>
</main>
<TheFooter />
</div>
</template>
<style lang="scss" scoped>
.error-content {
display: flex;
flex-direction: column;
align-items: center;
h2 {
font-size: 8rem;
line-height: 1;
font-weight: bold;
font-style: italic;
}
p {
font-weight: bold;
color: var(--dark-grey);
}
button.error {
display: flex;
}
}
</style>