This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/components/misc/error.vue
kolaente a8a7f70a3c
All checks were successful
continuous-integration/drone/push Build is passing
Cleanup code & make sure it has a common code style
2020-09-05 22:35:52 +02:00

13 lines
286 B
Vue

<template>
<div class="notification is-danger">
Loading failed, please <a @click="() => location.reload()">try again</a>.
If the error persists, please <a href="https://vikunja.io/contact/">contact us</a>.
</div>
</template>
<script>
export default {
name: 'error',
}
</script>