-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.vue
53 lines (45 loc) · 1 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
<template>
<section class="error">
<div class="m-auto">
<template v-if="error.statusCode === 404">
<Vue3Lottie :animation-data="notFoundPage" :height="200" :width="200" />
<h1>404!</h1>
<p class="Error-text">
Not found page, please go back to the home page.
</p>
</template>
<template v-else>
<p>{{ error.message }}</p>
</template>
<a class="error-link" @click="handleError">
<VButton> Go home </VButton>
</a>
</div>
</section>
</template>
<script setup>
import { Vue3Lottie } from "vue3-lottie";
import notFoundPage from "@/assets/animations/notFoundPage.json";
const error = useError();
const handleError = () => {
clearError({
redirect: "/",
});
};
</script>
<style lang="scss" scoped>
.error {
display: flex;
justify-content: center;
align-items: center;
align-self: center;
height: 90vh;
&-text {
font-size: 24px;
}
&-link {
display: block;
margin-top: 32px;
}
}
</style>