Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2437 Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de> Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
17 lines
500 B
Vue
17 lines
500 B
Vue
<template>
|
|
<message variant="danger">
|
|
<i18n-t keypath="loadingError.failed" scope="global">
|
|
<ButtonLink @click="reload">{{ $t('loadingError.tryAgain') }}</ButtonLink>
|
|
<ButtonLink href="https://vikunja.io/contact/">{{ $t('loadingError.contact') }}</ButtonLink>
|
|
</i18n-t>
|
|
</message>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import Message from '@/components/misc/message.vue'
|
|
import ButtonLink from '@/components/misc/ButtonLink.vue'
|
|
|
|
function reload() {
|
|
window.location.reload()
|
|
}
|
|
</script>
|