2020-07-27 19:53:19 +02:00
|
|
|
<template>
|
|
|
|
<div class="notification is-danger">
|
2021-08-20 15:38:16 +02:00
|
|
|
<i18n-t keypath="loadingError.failed">
|
2021-06-24 01:24:57 +02:00
|
|
|
<a @click="() => location.reload()">{{ $t('loadingError.tryAgain') }}</a>
|
2021-07-28 22:58:12 +02:00
|
|
|
<a href="https://vikunja.io/contact/" rel="noreferrer noopener nofollow" target="_blank">{{ $t('loadingError.contact') }}</a>
|
2021-08-20 15:38:16 +02:00
|
|
|
</i18n-t>
|
2020-07-27 19:53:19 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-09-05 22:35:52 +02:00
|
|
|
export default {
|
|
|
|
name: 'error',
|
|
|
|
}
|
2020-07-27 19:53:19 +02:00
|
|
|
</script>
|