mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
13 lines
226 B
Vue
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>
|