27 lines
556 B
JavaScript
27 lines
556 B
JavaScript
import Layout from '@/layout';
|
|
|
|
/**
|
|
* 客户端版本管理路由
|
|
*/
|
|
const clientVersionRouter = {
|
|
path: '/clientversion',
|
|
component: Layout,
|
|
redirect: '/clientversion/list',
|
|
name: 'ClientVersion',
|
|
alwaysShow: false,
|
|
meta: { title: '客户端版本管理', icon: 'phone' },
|
|
children: [
|
|
{
|
|
path: 'list',
|
|
component: () => import('@/views/clientVersion/list/index'),
|
|
name: 'ClientVersionList',
|
|
meta: {
|
|
title: '版本管理列表',
|
|
icon: ''
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default clientVersionRouter;
|