ErrorTab.vue 525 B

12345678910111213141516
  1. <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. import { errorOptions } from '#shared/router/error.ts'
  4. import CommonError from '#desktop/components/CommonError/CommonError.vue'
  5. import LayoutMain from '#desktop/components/layout/LayoutMain.vue'
  6. </script>
  7. <template>
  8. <LayoutMain
  9. class="flex grow flex-col items-center justify-center gap-4 bg-blue-50 dark:bg-gray-800"
  10. >
  11. <CommonError :options="errorOptions" authenticated />
  12. </LayoutMain>
  13. </template>