-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNotFound.vue
More file actions
45 lines (39 loc) · 764 Bytes
/
Copy pathNotFound.vue
File metadata and controls
45 lines (39 loc) · 764 Bytes
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
<template>
<div id="main">
<p>404 Page Not Found</p>
<img src="../assets/WalnutImage.jpg" />
<CustomButton id="button" @click="$router.push('/')"
>Go back to the home page</CustomButton
>
</div>
</template>
<script lang="ts">
import Vue from "vue";
import CustomButton from "@/components/buttons/CustomButton.vue";
export default Vue.extend({
metaInfo: { title: "Not Found" },
components: { CustomButton },
});
</script>
<style scoped>
div {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
flex-wrap: wrap;
}
img {
width: 50%;
height: 50%;
}
#button {
margin-top: 0.75em;
font-size: 0.5em;
}
p {
text-align: center;
display: inline;
}
</style>