chore: Update the preview address

This commit is contained in:
vben
2024-08-01 00:01:39 +08:00
parent 66e89d3c35
commit 546ff7caeb
4 changed files with 88 additions and 17 deletions

View File

@@ -1,6 +1,12 @@
import type { RouteRecordRaw } from 'vue-router';
import { VBEN_DOC_URL, VBEN_GITHUB_URL, VBEN_LOGO_URL } from '@vben/constants';
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';
@@ -10,7 +16,6 @@ const routes: RouteRecordRaw[] = [
component: BasicLayout,
meta: {
badgeType: 'dot',
badgeVariants: 'destructive',
icon: VBEN_LOGO_URL,
order: 9999,
title: $t('page.vben.title'),
@@ -23,8 +28,6 @@ const routes: RouteRecordRaw[] = [
path: '/vben-admin/about',
component: () => import('#/views/_core/vben/about/index.vue'),
meta: {
badgeType: 'dot',
badgeVariants: 'destructive',
icon: 'lucide:copyright',
title: $t('page.vben.about'),
},
@@ -50,6 +53,26 @@ const routes: RouteRecordRaw[] = [
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 版本',
},
},
],
},
];