2020-01-28 10:18:15 +01:00

13 lines
226 B
Vue

<template>
<div class="container">
<h1>{{ $t(error.message) }}</h1>
<nuxt-link to="/">{{ $t('error-pages.back-to-index') }}</nuxt-link>
</div>
</template>
<script>
export default {
props: ['error'],
}
</script>