blob: 27b44b9cc3006b6e7186e68b3472b9ae7b0caa92 (
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">404 Error</h1>
<h1 v-else>An error occurred</h1>
<p>Hmm. Seems like this page either didn't exist...</p>
<nuxt-link to="/">Home page</nuxt-link>
</v-container>
</template>
<script>
export default {
name: 'error',
props: ['error']
}
</script>
<style scoped>
</style>
|