| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- import type { RouteRecordRaw } from 'vue-router';
- import {
- VBEN_DOC_URL,
- VBEN_GITHUB_URL,
- VBEN_LOGO_URL,
- VBEN_NAIVE_PREVIEW_URL,
- VBEN_PREVIEW_URL,
- } from '@vben/constants';
- import { BasicLayout, IFrameView } from '#/layouts';
- import { $t } from '#/locales';
- const routes: RouteRecordRaw[] = [
- {
- component: BasicLayout,
- meta: {
- badgeType: 'dot',
- icon: VBEN_LOGO_URL,
- order: 9999,
- title: $t('page.vben.title'),
- },
- name: 'VbenProject',
- path: '/vben-admin',
- children: [
- {
- name: 'VbenAbout',
- path: '/vben-admin/about',
- component: () => import('#/views/_core/vben/about/index.vue'),
- meta: {
- icon: 'lucide:copyright',
- title: $t('page.vben.about'),
- },
- },
- {
- name: 'VbenDocument',
- path: '/vben-admin/document',
- component: IFrameView,
- meta: {
- icon: 'lucide:book-open-text',
- iframeSrc: VBEN_DOC_URL,
- keepAlive: true,
- title: $t('page.vben.document'),
- },
- },
- {
- name: 'VbenGithub',
- path: '/vben-admin/github',
- component: IFrameView,
- meta: {
- icon: 'mdi:github',
- link: VBEN_GITHUB_URL,
- title: 'Github',
- },
- },
- {
- name: 'VbenNaive',
- path: '/vben-admin/naive',
- component: IFrameView,
- meta: {
- badgeType: 'dot',
- link: VBEN_NAIVE_PREVIEW_URL,
- title: 'Naive UI 版本',
- },
- },
- {
- name: 'VbenAntd',
- path: '/vben-admin/aned',
- component: IFrameView,
- meta: {
- badgeType: 'dot',
- link: VBEN_PREVIEW_URL,
- title: 'Ant Design 版本',
- },
- },
- ],
- },
- ];
- export default routes;
|