🎨添加静态打包
This commit is contained in:
23
web/src/views/client/route.js
Normal file
23
web/src/views/client/route.js
Normal 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,
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
Reference in New Issue
Block a user