routes.ts 414 B

12345678910111213141516171819
  1. // Copyright (C) 2012-2022 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. },
  14. }
  15. export default route