feat(custom): i

This commit is contained in:
2023-09-08 10:29:31 +08:00
parent 3b3cb7ba34
commit 363270378a
60 changed files with 1234 additions and 1342 deletions

20
src/views/user/route.js Normal file
View File

@@ -0,0 +1,20 @@
const Layout = () => import('@/layout/index.vue')
export default {
name: '用户管理',
path: '/user',
component: Layout,
redirect: '/user_list',
children: [
{
name: 'Userlist',
path: 'user_list',
component: () => import('./index/index.vue'),
meta: {
title: '用户列表',
icon: 'mdi:account-multiple',
order: 10,
},
},
],
}