
Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1120 Reviewed-by: konrad <k@knt.li> Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de> Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
17 lines
442 B
Vue
17 lines
442 B
Vue
<template>
|
|
<message variant="danger">
|
|
<i18n-t keypath="loadingError.failed">
|
|
<a @click="reload">{{ $t('loadingError.tryAgain') }}</a>
|
|
<a href="https://vikunja.io/contact/" rel="noreferrer noopener nofollow" target="_blank">{{ $t('loadingError.contact') }}</a>
|
|
</i18n-t>
|
|
</message>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import Message from '@/components/misc/message.vue'
|
|
|
|
function reload() {
|
|
window.location.reload()
|
|
}
|
|
</script>
|