2020-07-27 19:53:19 +02:00
|
|
|
<template>
|
2021-11-28 15:18:27 +01:00
|
|
|
<message variant="danger">
|
2021-08-20 15:38:16 +02:00
|
|
|
<i18n-t keypath="loadingError.failed">
|
2021-11-02 19:29:35 +01:00
|
|
|
<a @click="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>
|
2021-11-28 15:18:27 +01:00
|
|
|
</message>
|
2020-07-27 19:53:19 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-11-28 15:18:27 +01:00
|
|
|
import Message from '@/components/misc/message'
|
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
export default {
|
|
|
|
name: 'error',
|
2021-11-28 15:18:27 +01:00
|
|
|
components: {Message},
|
2021-11-02 19:29:35 +01:00
|
|
|
methods: {
|
|
|
|
reload() {
|
|
|
|
window.location.reload()
|
|
|
|
},
|
2021-11-02 19:56:53 +01:00
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
}
|
2020-07-27 19:53:19 +02:00
|
|
|
</script>
|