generated from Leo_Ding/web-template
30 lines
727 B
JavaScript
30 lines
727 B
JavaScript
import { FileImageOutlined } from '@ant-design/icons-vue'
|
|
|
|
export default [
|
|
{
|
|
path: 'img',
|
|
name: 'img',
|
|
component: 'RouteViewLayout',
|
|
meta: {
|
|
icon: FileImageOutlined,
|
|
title: '镜像管理',
|
|
isMenu: true,
|
|
keepAlive: true,
|
|
permission: '*',
|
|
},
|
|
children: [
|
|
{
|
|
path: 'imgList',
|
|
name: 'imgList',
|
|
component: 'img/imgList/index.vue',
|
|
meta: {
|
|
title: '镜像列表',
|
|
isMenu: true,
|
|
keepAlive: true,
|
|
permission: '*',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
]
|