blob: d204d9730ffd9610914367c7aef5432556783593 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<template>
<v-container>
<h1 v-if="error.statusCode = 404" class="display-3 text-center">404 Error</h1>
<h1 v-else>An error occurred</h1>
<p class="text-center display-1">Hmm. Seems like this page either didn't exist or something went wrong...</p>
<p class="text-center display-1"><nuxt-link to="/">Home</nuxt-link></p>
</v-container>
</template>
<script>
export default {
name: 'error',
props: ['error']
}
</script>
<style scoped>
</style>
|