routes.ts 441 B

1234567891011121314151617181920
  1. // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. import type { RouteRecordRaw } from 'vue-router'
  3. export const isMainRoute = true
  4. const route: RouteRecordRaw = {
  5. path: '/error',
  6. alias: '/:pathMatch(.*)*',
  7. name: 'Error',
  8. props: true,
  9. component: () => import('./views/Error.vue'),
  10. meta: {
  11. requiresAuth: false,
  12. requiredPermission: null,
  13. hasOwnLandmarks: true,
  14. },
  15. }
  16. export default route