返回 slidev
error.vue
根目录 / packages / client / layouts / error.vue
1 <template>
2 <div class="px-4 py-10 text-center text-red-700 dark:text-red-500 font-bold font-mono">
3 {{
4 __SLIDEV_HAS_SERVER__
5 ? 'An error occurred on this slide. Check the terminal for more information.'
6 : 'Failed to fetch this slide. Please check your network connection.'
7 }}
8 </div>
9 </template>
10
10 lines Plain Text