You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
443 B
JavaScript
20 lines
443 B
JavaScript
export default [{
|
|
path: 'app',
|
|
name: 'appIndex',
|
|
meta: {
|
|
name: '应用管理',
|
|
icon: 'appstore',
|
|
unfold: false,
|
|
sort: 3
|
|
},
|
|
component: () => import('@/views/application/index'),
|
|
children: [{
|
|
path: 'detail',
|
|
name: 'appDetailIndex',
|
|
meta: {
|
|
name: '应用详情',
|
|
},
|
|
component: () => import('@/views/application/web/web/index'),
|
|
}]
|
|
}]
|