terminal.ts 355 B

1234567891011121314
  1. import type { RouteRecordRaw } from 'vue-router'
  2. import { CodeOutlined } from '@ant-design/icons-vue'
  3. export const terminalRoutes: RouteRecordRaw[] = [
  4. {
  5. path: 'terminal',
  6. name: 'Terminal',
  7. component: () => import('@/views/terminal/Terminal.vue'),
  8. meta: {
  9. name: () => $gettext('Terminal'),
  10. icon: CodeOutlined,
  11. },
  12. },
  13. ]