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