home.ts 382 B

123456789101112131415161718
  1. // Copyright (C) 2012-2021 Zammad Foundation, https://zammad-foundation.org/
  2. import Home from '@mobile/views/Home.vue'
  3. import type { RouteRecordRaw } from 'vue-router'
  4. const route: RouteRecordRaw = {
  5. path: '/',
  6. name: 'Home',
  7. props: true,
  8. component: Home,
  9. meta: {
  10. title: __('Home'),
  11. requiresAuth: true,
  12. requiredPermission: ['*'],
  13. },
  14. }
  15. export default route