1234567891011121314 |
- import type { RouteRecordRaw } from 'vue-router'
- import { CodeOutlined } from '@ant-design/icons-vue'
- export const terminalRoutes: RouteRecordRaw[] = [
- {
- path: 'terminal',
- name: 'Terminal',
- component: () => import('@/views/terminal/Terminal.vue'),
- meta: {
- name: () => $gettext('Terminal'),
- icon: CodeOutlined,
- },
- },
- ]
|