1
0

Add more prefetching of components

This commit is contained in:
kolaente
2020-07-27 19:53:19 +02:00
parent bc7e7dd865
commit b1b5398c56
17 changed files with 199 additions and 32 deletions

View File

@ -0,0 +1,12 @@
<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>

View File

@ -0,0 +1,19 @@
<template>
<div class="loader-container is-loading"></div>
</template>
<script>
export default {
name: 'loading'
}
</script>
<style scoped>
.loader-container {
height: 100%;
min-height: 200px;
width: 100%;
min-width: 600px;
max-width: 100vw;
}
</style>