We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58c7951 commit e9cd286Copy full SHA for e9cd286
zimui/src/views/HomeView.vue
@@ -71,7 +71,9 @@ watch(
71
v-if="main.pageContent"
72
v-html="main.pageContent.htmlBody"
73
></section>
74
- <div v-else>Page not found</div>
+ <div v-else-if="main.isLoading">Page loading ...</div>
75
+ <!-- We do not display HomeView when error occured, so message below is never shown -->
76
+ <div v-else>No page loaded, problem occured, please try to reload.</div>
77
</article>
78
</main>
79
</template>
0 commit comments