feat: 完成cicd流水线

This commit is contained in:
ccnetcore
2025-06-19 01:02:08 +08:00
parent 890727d495
commit 899bd7e316
5 changed files with 133 additions and 86 deletions

View File

@@ -1,5 +1,5 @@
import type {RouteRecordRaw} from 'vue-router';
import {HOME_URL} from '@/config';
import type { RouteRecordRaw } from 'vue-router';
import { HOME_URL } from '@/config';
// LayoutRouter[布局路由]
export const layoutRouter: RouteRecordRaw[] = [
@@ -34,12 +34,12 @@ export const layoutRouter: RouteRecordRaw[] = [
{
path: '/products',
name: 'products',
component: () => import('@/pages/product/index.vue'), path: '/products',
component: () => import('@/pages/product/index.vue'),
meta: {
title: '产品页面',
keepAlive: true, // 如果需要缓存
isDefaultChat: false // 根据实际情况设置
}
isDefaultChat: false, // 根据实际情况设置
},
},
],
},