-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.vue
36 lines (34 loc) · 828 Bytes
/
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
<template>
<div>
<NuxtLayout>
<Stage
:headline="$t('general.404.headline')"
:subline="$t('general.404.subline')"
:with-scroll-indicator="false"
class="mb-12"
img-alt="sunset"
img-src="sunset.webp"
/>
<div class="w-full flex justify-center items-center">
<BaseButton class="mb-12" @click="router.push('/')">
{{ $t('general.404.button') }}
</BaseButton>
</div>
</NuxtLayout>
</div>
</template>
<script lang="ts" setup>
import { useRouter } from 'nuxt/app'
const router = useRouter()
</script>
<script lang="ts">
import Stage from './components/Stage/index.vue'
import BaseButton from './components/BaseButton/index.vue'
export default {
name: 'ErrorPage',
components: {
Stage,
BaseButton,
},
}
</script>