🎨添加静态打包

This commit is contained in:
2024-08-21 09:10:01 +08:00
parent 941b8da804
commit 12e551b4e9
135 changed files with 15749 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
const Layout = () => import('@/layout/index.vue')
export default {
name: 'Client',
path: '/',
component: Layout,
redirect: '/client',
meta: {
order: 2,
},
children: [
{
name: 'Client',
path: 'client',
component: () => import('./index.vue'),
meta: {
title: '客户端',
icon: 'ph:network-duotone',
order: 2,
},
},
],
}