feat: 新增导航目录

This commit is contained in:
2024-07-10 16:43:46 +08:00
parent 69ad5b0c55
commit bb561da045
16 changed files with 20913 additions and 1874 deletions

View File

@@ -12,7 +12,6 @@ export default defineConfig({
title: '五味子云存储',
},
base: '/',
browserslist: ['> 1%', 'last 2 versions'],
routes: [
{
path: '/',
@@ -38,6 +37,33 @@ export default defineConfig({
path: '/table',
component: './Table',
},
{
name: ' 用户配置',
path: '/user',
component: './User',
routes: [
{
name: ' 用户表',
path: '/Users',
component: './Users',
},
{
name: ' 角色表',
path: '/Role',
component: './Role',
},
{
name: ' 权限表',
path: '/Permission',
component: './Permission',
},
{
name: ' 社会用户信息表',
path: '/Social',
component: './Social',
},
]
},
],
npmClient: 'yarn',
});